我只需要一个父过滤器,这样孩子就无法卸载我的应用程序,直到父提供权限(如密码)。有可能吗?
可以阻止应用程序卸载吗?
以下是我的清单。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.impressive.artworx.tutorials.installedapps"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ListInstalledApps"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:1)
Android就像Windows,Linux和Mac一样。操作系统具有允许/禁止其应用程序使用的功能。您可能需要在监狱破坏的手机上编写本机应用程序,以便在操作系统上实现这种控制。