复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60--- a/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSFactoryImpl.java +++ b/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSFactoryImpl.java @@ -44,6 +44,8 @@ import com.android.systemui.qs.tiles.WorkModeTile; import com.android.systemui.qs.QSTileHost; import com.android.systemui.util.leak.GarbageMonitor; +import android.os.SystemProperties; + public class QSFactoryImpl implements QSFactory { private static final String TAG = "QSFactory"; @@ -62,14 +64,29 @@ public class QSFactoryImpl implements QSFactory { } private QSTileImpl createTileInternal(String tileSpec) { + boolean isbluetooth = SystemProperties.get("persist.sys.blueth").equals("1") ? true : false; + boolean iswifiable = SystemProperties.get("persist.sys.wifiable").equals("1") ? true : false; + boolean isdataable = SystemProperties.get("persist.sys.dataable").equals("1") ? true : false; // Stock tiles. switch (tileSpec) { case "wifi": - return new WifiTile(mHost); + if(isbluetooth){ + return null; + }else{ + return new WifiTile(mHost); + } case "bt": - return new BluetoothTile(mHost); + if(iswifiable){ + return null; + }else{ + return new BluetoothTile(mHost); + } case "cell": - return new CellularTile(mHost); + if(isdataable){ + return null; + }else{ + return new CellularTile(mHost); + } case "dnd":
最后
以上就是害羞煎饼最近收集整理的关于android 9.0 代码动态去掉下拉快捷键,重启生效的全部内容,更多相关android内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复