从Android框架的源代码中,有一个名为的文件config.xml,其中存储了Android内部使用的一些值。
还有一个值控制被视为缩放手势的手指之间的最小距离:
<!-- Minimum span needed to begin a touch scaling gesture.
If the span is equal to or greater than this size, a scaling gesture
will begin, where supported. (See android.view.ScaleGestureDetector)
This also takes into account the size of any active touch points.
Devices with screens that deviate too far from their assigned density
bucket should consider tuning this value in a device-specific overlay.
For best results, care should be taken such that this value remains
larger than the minimum reported touchMajor/touchMinor values
reported by the hardware. -->
<dimen name="config_minScalingSpan">27mm</dimen>
Run Code Online (Sandbox Code Playgroud)
正如它所说,如果我们想修改这个值,我们可以
在特定于设备的覆盖中调整此值。
经过短暂的谷歌搜索后,我找不到任何作为应用程序开发人员修改此值的方法。
我还尝试添加一个名为config.xmlunderres/values我的项目的新文件,但它不起作用。
这可能吗?我只是想调整被视为缩放手势的最小距离,但ScaleGestureDetector没有这样的API。
我知道这是一个老问题,但我会回答它,以防其他人陷入同样的问题。请注意,这是创建自定义 Android ROM 版本时的操作方式。由于权限原因,它可能无法与 Android APK 一起使用。但是,如果您希望在自定义 ROM 中执行此操作,请继续阅读。
这很容易做到。下面是我如何尝试在 android 设置中覆盖 config.xml 文件的示例:
PRODUCT_PACKAGE_OVERLAYS += \
<path/to/overlay/directory/from/step/one>这是我在这个论坛上的第一个答案。希望它对某人有帮助:)
| 归档时间: |
|
| 查看次数: |
2704 次 |
| 最近记录: |