我创建了一个应用程序,我不想让用户显示设置。 用户现在无法通过启动器运行设置,但用户可以通过信息面板运行设置。
我正在使用以下解决方案,但此用户可以选择要打开的内容。我不知道
<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设备中的设置?
提前致谢