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);
}

}

相关推荐
儿歌八万首1 小时前
Android Studio 调试指南:从入门到进阶
android·ide·android studio
aidou13141 小时前
Android中线程池使用
android·线程池·thread·executorservice·runnable·scheduled·newsinglethread
爱装代码的小瓶子1 小时前
【Linux基础】操作系统下的进程与虚拟内存的关系
android·java·服务器
_李小白1 小时前
【Android 美颜相机】第十九天:GPUImageColorBalanceFilter (色彩平衡滤镜)
android·数码相机
广药门徒2 小时前
WS2812_CONTROL使用手册
android·java·数据库
云游云记2 小时前
php自动加载
android·php·android studio
警醒与鞭策2 小时前
Cursor Agent Skill 原理及LLM , Agent, MCP ,Skill区别
android·unity·ai·cursor
TheNextByte13 小时前
如何将通话记录从Android传输到PC
android
灵感菇_3 小时前
Android Fragment全面解析
android·生命周期·fragment
web_Hsir3 小时前
uniapp + vue2 + pfdjs + web-view 实现安卓、iOS App PDF预览
android·前端·uni-app