精华 | |
金钱 | BA |
威望 | 点 |
贡献值 | 点 |
爱心 | 点 |
经验 | 点 |
注册时间 | 2012-10-25 |
最后登录 | 1970-1-1 |
在线时间 | 小时 |
| |
| |
| |
|
官方系统默认点动接听和滑动接听两种应答方式当有电话打进时从口袋掏出,因为误碰而挂断电话能不能反编译两个程序,,试了N次都在FC要不就失败,,,
滑动接听
接听界面保持官方原样,只是关闭了点动接听,仅开启滑动接听。
反编译Phone.apk,打开Phone/res/layout/moto_incoming_lockscreen.xml,
将第四行
<com.motorola.android.widget.RunwayLauncher android:id="@id/incomingCallWidget" android:layout_width="fill_parent" android:layout_height="fill_parent" motors:unlock_Fling="true" motors:unlock_TwoTap="true" motors:shakeStartGraphic="true" motors:keepTargetVisibleDim="true" motors:autoPing="true"
中的
motors:unlock_TwoTap="true"
改成
motors:unlock_TwoTap="false"
解锁的:滑动解锁
--------
是关闭了点动解锁,仅开启滑动解锁。
反编译framework-res.apk,打开framework-res/res/layout/zz_moto_keyguard_unlock_widget.xml,
将第二行
<com.motorola.android.widget.RunwayLauncher android:id="@id/unlock_widget" android:layout_width="fill_parent" android:layout_height="fill_parent" android:unlock_Fling="true" android:unlock_TwoTap="true" android:autoPing="true"
中的
android:unlock_TwoTap="true"
改成
android:unlock_TwoTap="false" |
|