2

我想从我的平板电脑中禁用或卸载或删除所有原生安卓应用程序。我只希望我的应用程序在平板电脑上运行,以便最终用户能够连接到互联网或浏览。我的应用程序自动连接到互联网一段时间后,做必要的事。

简而言之,我想在我的平板电脑中自定义 Android 2.3.3,以便平板电脑中除了我的自定义应用程序之外没有其他应用程序。

一旦最终用户打开平板电脑,我希望我的应用程序启动。你所能做的就是玩我的应用程序或什么都不做;)

4

2 回答 2

1

你可能需要在你的设备上创建一个自定义版本的 Android 并卸载所有应用程序,但你的应用程序可能会有所帮助: http: //forum.xda-developers.com/showthread.php?t=633246

如果您经验丰富,那么最好直接使用 Android 操作系统的源代码,您可以在这里找到它:http: //source.android.com/source/index.html

于 2012-05-20T19:32:22.350 回答
1

您可以将您的应用注册为自定义启动器。此应用程序会在启动设备后以及用户点击主页按钮时出现。

您可以使用特殊的意图过滤器来做到这一点:

<intent-filter>
 <action android:name="android.intent.action.MAIN" />
 <category android:name="android.intent.category.HOME" />
 <category android:name="android.intent.category.DEFAULT" />
</intent-filter>
于 2012-05-20T22:06:59.103 回答