2013-06-19 59 views
-1

我只需要一个父过滤器,这样孩子就不能卸载我的应用程序,直到父母授予权限(如密码)为止。有可能的 ?如何防止我的应用程序在Android上被卸载

可以防止应用程序卸载吗?

下面是我的清单。

<?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> 

回答

1

Android是一个操作系统,就像windows,linux和Mac一样。操作系统具有允许/禁止应用程序使用的功能。您可能需要在监狱手机上编写原生应用程序才能在操作系统上实现这种控制。

+0

我开发的应用程序为Android平板4.1果冻豆 –

+0

这是非常有趣的。答案仍然有效。 – Siddharth

+0

给我任何例子请 –

相关问题