Android中因为没有使用wifi模块 因此:将WIDGETS-->Settings sh...

Android中因为没有使用wifi模块  因此:将WIDGETS-->Settings shortcut-->中的Wi-Fi移除

1.通过WIDGETWS->Settings shortcut找到他的定义

Settings/res/values/strings.xml

 <string name="settings_shortcut">Settings shortcut</string>

2.通过定义settings_shortcut找到

Settings/AndroidManifest.xml        

<activity android:name="CreateShortcut" android:label="@string/settings_shortcut"
            android:theme="@style/Theme.CreateShortCut">
            <intent-filter>
                <action android:name="android.intent.action.CREATE_SHORTCUT" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

不难发现,要想在CreateShortcut中显示,Activity在必须要有

<category android:name="com.android.settings.SHORTCUT" />

如果我们想将设置我ifi项添加到shortcut列表,我们只需要在androidmanifest.xml中声明    <activity android:name="Settings$WifiSettingsActivity"部分加上

<category android:name="com.android.settings.SHORTCUT" />

即可。

那么若不想有Settings shortcut那么删除掉该句即可

<category android:name="com.android.settings.SHORTCUT" />





你可能感兴趣的:(android,Settings)