Android initialExpandedChildrenCount高级菜单折叠项或铺展折叠项

/vendor/mediatek/proprietary/packages/apps/MtkSettings/res/xml/system_dashboard_fragment.xml

<PreferenceScreen

xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:settings="http://schemas.android.com/apk/res-auto"

android:key="system_dashboard_screen"

android:title="@string/header_category_system"

settings:initialExpandedChildrenCount="4">

意思是,超过4个菜单则折叠隐藏起来,否则没超过直接平铺展开显示!

@Override

public void onCreate(Bundle icicle) {

super.onCreate(icicle);

final PreferenceScreen screen = getPreferenceScreen();
// We do not want to display an advanced button if only one setting is hidden
if (getVisiblePreferenceCount(screen) == screen.getInitialExpandedChildrenCount() + 1) {
screen.setInitialExpandedChildrenCount(Integer.MAX_VALUE);
}

}

相关推荐
Bervin121388 分钟前
Flutter Android环境的搭建
android·flutter
e***87707 小时前
windows配置永久路由
android·前端·后端
fouryears_234178 小时前
现代 Android 后台应用读取剪贴板最佳实践
android·前端·flutter·dart
YF02119 小时前
Frida for MacBook/Android 安装配置
android·前端
雨白10 小时前
Android实战:构建高可维护的日志系统
android
茄子凉心11 小时前
android 开机启动App
android·java·开发语言
2501_9371931413 小时前
神马影视 8.8 版源码:4K 播放优化体验测评
android·源码·源代码管理·机顶盒
修炼者14 小时前
Kotlin中的Flow流
android·kotlin
洞见不一样的自己14 小时前
Android studio 编译问题
android
j***630814 小时前
SpringbootActuator未授权访问漏洞
android·前端·后端