如何在不显示 activity 的情况下打开 运行 代码的应用程序

How to open application to run code without showing activity

我希望当用户点击我的应用程序时(当他打开我的应用程序时)应用程序 运行 java 没有打开应用程序或显示任何 activity.

Fast Task killer申请。

谢谢。

为此

创建透明activity

这是一个完整的文件:

res/values/styles.xml

<resources>
  <style name="Theme.Transparent" parent="android:Theme">
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowIsFloating">true</item>
    <item name="android:backgroundDimEnabled">false</item>
  </style>
</resources>

然后将样式应用到您的 activity,例如:

<activity android:name=".SampleActivity" android:theme="@style/Theme.Transparent">
...
</activity>