Android 9.0 屏蔽设备的WLAN功能

本文详细描述了如何在Android9.0设备上通过修改MtkSettings和SystemUI文件来屏蔽WLAN功能,包括调整bool值、修改网络设置摘要以及移除quicksettings中的WLAN图标。
摘要由CSDN通过智能技术生成

Android 9.0 屏蔽设备的WLAN功能

最近接到需求反馈,想要屏蔽设备的WLAN功能,具体修改参照如下:

/vendor/mediatek/proprietary/packages/apps/MtkSettings/res/values/bools.xml

    <!-- Whether Wi-Fi settings should be shown or not.
    This also controls whether Wi-fi related sub-settings (e.g. Wi-Fi preferences) will
    surface in search results or not.-->
-    <bool name="config_show_wifi_settings">true</bool>
+    <bool name="config_show_wifi_settings">false</bool>

另外一级菜单“网络和互联网”的 summary 也要调整,将WLAN字样去除,具体修改参照如下:

/vendor/mediatek/proprietary/packages/apps/MtkSettings/src/com/android/settings/network/NetworkDashboardFragment.java

       public void setListening(boolean listening) {
            if (listening) {
                /*/
                String summary = BidiFormatter.getInstance()
                       .unicodeWrap(mContext.getString(R.string.wifi_settings_title));
                if (mMobileNetworkPreferenceController.isAvailable()) {
                    final String mobileSettingSummary = mContext.getString(
                            R.string.network_dashboard_summary_mobile);
		//*/
                    String summary = BidiFormatter.getInstance()
                        .unicodeWrap(mContext.getString(R.string.network_dashboard_summary_mobile));
                //}
		//*/

下拉状态栏中对应WLAN功能的quick setting图标也需要屏蔽掉:

/vendor/mediatek/proprietary/packages/apps/SystemUI/res/values/config.xml

    <string name="quick_settings_tiles_default" translatable="false">
-        wifi,bt,dnd,flashlight,rotation,cell,airplane,cast,location,screenrecord
+        bt,dnd,flashlight,rotation,cell,airplane,cast,location,screenrecord
    </string>

    <string name="quick_settings_tiles_stock" translatable="false">
-        wifi,cell,dnd,flashlight,rotation,bt,airplane,location,screenrecord,hotspot,inversion,saver,work,cast,night
+        cell,dnd,flashlight,rotation,bt,airplane,location,screenrecord,hotspot,inversion,saver,work,cast,night
    </string>

重新编译验证,修改生效,设备WLAN功能已屏蔽

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Jeffries_C

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值