40dp apps_customize_pageLayoutPaddingRight">40dpapps tab栏的_android framework 设备首次开机,亮度的调节流程">
赞
踩
Launcher 总结:
常用修改
一. 修改默认(Settting.apk 中选项默认值一般存在于 frameworks\base\packages\SettingsProvider\res\values\defaults.xml)
1. 默认勾选 未知来源
<bool name="def_install_non_market_apps">false</bool>
2. 默认铃声, 通知, 闹钟 音乐
可以在system.prop 分别配置
3. 壁纸不跟随滑动
packages/apps/Launcher2/./src/com/android/launcher2/Workspace.java 大概 875行
private float wallpaperOffsetForCurrentScroll()
修改 wallpaperOffsetForCurrentScroll 的返回值。 改成 return 0.5f;
二.隐藏或删除某项
1.去掉设置中Wifi选项
device/amlogic/xxxref/xxxref.mk 文件中
# Device specific system feature description
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/tablet_core_hardware.xml:system/etc/permissions/tablet_core_hardware.xml \
frameworks/native/data/etc/android.hardware.wifi.xml:system/etc/permissions/android.hardware.wifi.xml \ (删除)
2.去掉设置中蓝牙选项
参考 wifi。
在 tablet_core_hardware.xml 删除 <feature name="android.hardware.bluetooth" /> 这一行
3. HDMI 部分
1)去掉HDMI选项 在system.prop中 加入 ro.hdmi.autoswitch=false
2)去掉480p 选项 在prop中设置 ro.hdmi480p.enable=false
4. 去掉 powerwidget 中 某一项
以去掉 gps 为例
5. 去掉 Setting widget 中 某一项
以去掉 "网络共享与便携式热点" 为例
根据"网络共享与便携式热点" 这个关键词 在 values-zh_rCN 中搜索 到的 key值, 然后在AndroidManifest.xml 搜索这个 key值。 找到对于的Activity 配置
移除 <category android:name="com.android.settings.SHORTCUT" /> 这一行。
6. 修改浏览器默认浏览器模式
8. 系统自带LatinIME 高级设置--按键音量设置 修改默认值
public static final String SYSTEM_LIB_PATH = "/system/lib";if (libraryFile.exists()) {path = libraryFile.getPath();}else{File systemLibraryFile = new File(SYSTEM_LIB_PATH,System.mapLibraryName(libname));if (systemLibraryFile.exists()) {path = systemLibraryFile.getPath();}}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。