我在构建的Android应用程序中遇到一个奇怪的问题,该应用程序基本上是一个Homescreen替换应用程序,它将作为设备中的默认主屏幕。要做一些初始化工作,我已经扩展了Android Application类,在onCreate()
方法中我基本上注册了一些观察者并启动了一个服务,这里是代码:
public class MyApplication extends Application implements ExternalStorageListener {
private ExternalStorageObserver externalStorageObserver;
public void onCreate() {
Log.i("MyApplication", "Starting application");
super.onCreate();
externalStorageObserver = new ExternalStorageObserver(this);
if(externalStorageObserver.isExternalStorageAvailable()) {
// this builds a list of files present in the SD card
// which is being used through the application to do
// some work
buildData();
File externalFileDir = getApplicationContext().getExternalFilesDir(null);
if(externalFileDir != null && externalFileDir.isDirectory()) {
// do something...
}
}
//Register listener to observe external storage state
registerExternalStorageObserver();
Log.i("SyncService", "Starting sync service...");
ComponentName cmp = startService(new Intent(getApplicationContext(), SyncService.class));
Log.i("SyncService", cmp.toString());
}
private void registerExternalStorageObserver() {
IntentFilter filter = new IntentFilter();
filter.addAction(Intent.ACTION_MEDIA_MOUNTED);
filter.addAction(Intent.ACTION_MEDIA_REMOVED);
registerReceiver(externalStorageObserver, filter);
}
private void buildData() {
// builds a list
}
}
清单文件的内容:
<application android:persistent="true" android:icon="@drawable/icon"
android:label="@string/app_name" android:name="com.webgyani.android.MyApplication"
android:debuggable="true">
<activity android:name=".HomeTabActivity" android:launchMode="singleInstance"
android:stateNotNeeded="true" android:theme="@style/LightTabsTheme"
android:screenOrientation="landscape" android:label="@string/app_name">
<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>
</activity>
</application>
当我使用Eclipse安装应用程序或手动将apk安装到设备上时,这可以正常工作。一旦安装了应用程序,一切正常,我的意思是上面的onCreate()
方法被调用,服务也正常启动,但是如果我重新启动设备,那么onCreate()
方法就不会被调用(没有将显示日志语句,并且不会启动服务)。经过一些调试后,我注意到只有当我将我的应用程序设置为默认启动器/主屏幕应用程序然后重新启动设备时才会发生这种情况,因为一旦您将应用程序设置为默认启动器,Android应该会在重启后自动启动您的应用程序作为主屏幕。在我的情况下,应用程序已启动,但该代码未执行。
我尝试使用调试器,但这不起作用,因为当我重启设备时,调试器断开连接,当USB调试启用时,我的应用程序已经启动。
我甚至双重检查了Logcat但没有看到任何错误。我想有一个BOOT_COMPLETED意图来初始化那个部分,但这需要一些代码重构,除非有解决方案,否则我不愿意在这个时间做。
所以我很想知道这是否是标准行为,或者是否存在导致此问题的已知错误,因为我的假设是应用程序的onCreate
方法将始终在应用程序启动时被调用。我从早上开始尝试了一切,但没有任何效果,无法确定问题,如果你们中的任何人能够对此有所了解,那么我将非常感激。
由于
答案 0 :(得分:4)
好吧,最后我发现了问题,这是我的代码本身。我最初怀疑MyApplication
的{{1}}方法没有被调用,我有这个假设,因为我无法看到任何日志。要知道该方法是否被调用,而不是使用onCreate()
我还在ArrayList中添加了一些额外的日志消息并稍后打印它们,这表明这些方法确实被调用,甚至服务实例化了正确但没有填充数据或文件列表,因为那时SDCard还没有准备好。我也非常确定日志在Logcat上不可用,因为我的应用程序启动后USB调试器就绪了(因为它是一个主屏幕应用程序)。
当你看到我的被覆盖的Log.i()
类实现了一个名为MyApplication
的监听器(基本上扩展了BroadcastReceiver)时,实际的问题就变得很明显了,我已经创建了该类来接收SDCard相关的Intents,例如{{1} },ExternalStorageListener
重建数据(文件列表)。在我的情况下,ExternalStorageListener类没有收到Intents,因为我忘了在代码示例中的ACTION_MEDIA_MOUNTED
方法中添加此ACTION_MEDIA_REMOVED
。
我同意我的问题是基于错误的假设,我发布的代码示例很难找出实际问题。我不知道如何处理这个问题是将其标记为答案还是保留原样。