2013-06-19 102 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

給我任何例子請 –

相關問題