Android SystemUI 去掉系统的访客模式
Posted 王睿丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android SystemUI 去掉系统的访客模式相关的知识,希望对你有一定的参考价值。
packages/apps/Settings/androidManifest.xml
去掉设置下的访客模式
<!-- <intent-filter>-->
<!-- <action android:name="com.android.settings.action.SETTINGS" />-->
<!-- </intent-filter>-->
frameworks/base/packages/SystemUI/res/layout/qs_footer_impl.xml
去掉锁屏下的访客模式,方法就是找到与访客模式相关的属性 ,将它android:visibility=“gone”
<!-- wangrui Remove the guest mode of the lock screen interface-->
<ImageView
android:id="@+id/multi_user_avatar"
android:layout_width="@dimen/multi_user_avatar_expanded_size"
android:layout_height="@dimen/multi_user_avatar_expanded_size"
android:layout_gravity="center"
++ android:visibility="gone"
android:scaleType="centerInside"/>
frameworks/base/packages/SystemUI/res/layout/keyguard_status_bar.xml
<!-- wangrui Remove the guest mode of the lock screen interface -->
<com.android.systemui.statusbar.phone.MultiUserSwitch android:id="@+id/multi_user_switch"
android:layout_width="@dimen/multi_user_switch_width_keyguard"
android:layout_height="match_parent"
android:background="@drawable/ripple_drawable"
android:layout_marginEnd="@dimen/multi_user_switch_keyguard_margin"
++ android:visibility="gone">
<ImageView android:id="@+id/multi_user_avatar"
++ android:visibility="gone"
android:layout_width="@dimen/multi_user_avatar_keyguard_size"
android:layout_height="@dimen/multi_user_avatar_keyguard_size"
android:layout_gravity="center"
android:scaleType="centerInside"/>
</com.android.systemui.statusbar.phone.MultiUserSwitch>
以上是关于Android SystemUI 去掉系统的访客模式的主要内容,如果未能解决你的问题,请参考以下文章
系统方向学习总结2--Android 10.0 SystemUI默认去掉底部导航栏的三种方法
系统方向学习总结2--Android 10.0 SystemUI默认去掉底部导航栏的三种方法