有没有办法阻止访问Android设备中的设置?

时间:2013-12-16 08:08:09

标签: android settings

我创建了一个应用程序,我不想让用户显示设置。 用户现在无法通过启动器运行设置,但用户可以通过信息面板运行设置。

我正在使用以下解决方案,但此用户可以选择要打开的内容。我不知道

            <intent-filter >
            <action android:name="android.settings.SETTINGS" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
        <intent-filter >
            <action android:name="android.settings.WIRELESS_SETTINGS" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>

有没有办法阻止访问Android设备中的设置?

提前致谢

0 个答案:

没有答案
相关问题