请教一个安卓 10 设置界面的定制问题

2023-03-07 13:21:35 +08:00
 zinwalin

设置里的关于页面里,标题栏右侧有个搜索按钮,想把它隐藏掉,但是没找到入口,其它页面没有这个按钮,是不是通过 PreferenceScreen 的选项来配置?

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" xmlns:settings="http://schemas.android.com/apk/res-auto" android:key="my_device_info_pref_screen" android:title="@string/about_settings">

<!-- Device name -->
<com.android.settings.widget.ValidatedEditTextPreference
    android:key="device_name"
    android:order="1"
    android:title="@string/my_device_info_device_name_preference_title"
    android:summary="@string/summary_placeholder"
    settings:controller="com.android.settings.deviceinfo.DeviceNamePreferenceController"
    settings:enableCopying="true"/>
  settings:controller="com.android.settings.deviceinfo.BuildNumberPreferenceController"/>
</PreferenceScreen>
3820 次点击
所在节点    Android
4 条回复
h4de5
2023-03-07 13:48:02 +08:00
那个搜索栏是一个单独的 app 包名:com.android.settings.intelligence
禁用
adb pm disable-user com.android.settings.intelligence
启用
adb pm enable com.android.settings.intelligence

可以用这 2 条命令测试
zinwalin
2023-03-07 14:03:42 +08:00
@h4de5 太感谢了, 这个配置如何默认关闭? 编译完镜像就发布给客户了,最好能修改默认值。
h4de5
2023-03-07 16:41:27 +08:00
如果你要在默认编译系统里面就去掉这个。你可以去源码里面找这个 apk 是那个 mk 里面编译出来的。在 mk 文件里面去掉这个 apk 就可以了。
系统安装好以后路径在这里:
/product/priv-app/SettingsIntelligence/SettingsIntelligence.apk
zinwalin
2023-03-10 00:13:15 +08:00
@h4de5 感谢!

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/921878

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX