解决方法
您可以扩展Application并在自定义应用程序类的onCreate中运行该方法.这仅在每次应用程序启动时运行一次.
例如:
public class MyApp extends Application { @Override public void onCreate() { super.onCreate(); // Your methods here... } }
请注意,这不应该长时间运行.如果它需要一些时间,请在AsyncTask中执行.
最后,你需要告诉Android你有一个自定义的Application类.您可以通过在应用程序标记的android:name属性中引用应用程序类来在清单中执行此操作:
<manifest ... > <application android:name=".MyApp" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity> ... </activity> </application> </manifest>