您的位置:首页 > 移动开发 > Android开发

Android MTK 去掉 Setting 中 Wifi 和 蓝牙

2017-04-22 21:32 459 查看
http://blog.csdn.net/mr_kings/article/details/51802609

//去除SystemUI下拉中的 wifi和Bluetooth开关选项
frameworks\base\packages\SystemUI\src\com\android\systemui\statusbar\phone\ QuickSettings.java
private void addWifiTile(ViewGroup parent, LayoutInflater inflater) {

//Remove wifi systemUI lhw start
// if (!FeatureOption.MTK_WLAN_SUPPORT) {
if (FeatureOption.MTK_WLAN_SUPPORT) {
//Remove wifi systemUI lhw end
wifiTile.setVisibility(View.GONE);
}

private void addBluetoothTile(ViewGroup parent, LayoutInflater inflater) {

if (mModel.deviceSupportsBluetooth()
&& FeatureOption.MTK_BT_SUPPORT) {
//Remove bluetooth systemUI lhw start
//parent.addView(bluetoothTile);
// parent.removeView(view);
bluetoothTile.setVisibility(View.GONE);
//Remove bluetooth systemUI lhw start
}
//去掉Setting 中的 wifi 和蓝牙 条目
packages\apps\Settings\src\com\android\settings\Settings.java
//根据判断获取当前是否支持该属性 进行移除 逆向处理
private void updateHeaderList(List<Header> target) {
} else if (id == R.id.wifi_settings) {
// Remove WiFi Settings if WiFi service is not available.
//Remove WIFI Settings lhw start
//if (!getPackageManager().hasSystemFeature(PackageManager.FEATURE_WIFI)) {
if (getPackageManager().hasSystemFeature(PackageManager.FEATURE_WIFI)) {
target.remove(i);
//Remove WIFI Settings lhw end
} else if (id == R.id.bluetooth_settings) {
// Remove Bluetooth Settings if Bluetooth service is not available.
//Remove Bluetooth Settings lhw start
if (getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH)) {
//if (!getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH)) {
//Remove Bluetooth Settings lhw end
target.remove(i);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: