我正在尝试解决突然弹出的日志异常。 我以前从未见过它,但是,我没有运行这个应用程序大约5周,所以也许它是任何更新或其他的新东西。 这是我的班级代码:
public class SplashScreen extends Activity {
// Splash screen timer
private static int SPLASH_TIME_OUT = 1000;
private static final int PLAY_SERVICES_RESOLUTION_REQUEST = 9000;
private static final String TAG = "SplashPush";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
new Handler().postDelayed(new Runnable() {
/*
* Showing the splash screen for the selected time
*/
@Override
public void run() {
// Once the timer is over we will start the main activity
Intent i = new Intent(SplashScreen.this, ClientDriverMainScreen.class);
startActivity(i);
// close this activity
finish();
}
}, SPLASH_TIME_OUT);
if (checkPlayServices()) {
Intent i = new Intent(this, RegistrationIntentService.class);
startService(i);
}
}
/**
* Check the device to make sure it has the Google Play Services APK. If
* it doesn't, display a dialog that allows users to download the APK from
* the Google Play Store or enable it in the device's system settings.
*/
private boolean checkPlayServices() {
GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
int resultCode = apiAvailability.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
if (apiAvailability.isUserResolvableError(resultCode)) {
apiAvailability.getErrorDialog(this, resultCode, PLAY_SERVICES_RESOLUTION_REQUEST)
.show();
} else {
Log.i(TAG, "This device is not supported.");
finish();
}
return false;
}
return true;
}
}
但我一直有例外:
活动activiteslogic.splash.SplashScreen已泄露窗口。
任何人都有线索或暗示要寻找什么?
完成Logcat:
08-22 12:41:03.609 1849-1849/zooz.ivmobs.com.zooz E/WindowManager: android.view.WindowLeaked: Activity activiteslogic.splash.SplashScreen has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView{52860efc V.E..... R......D 0,0-1026,639} that was originally added here
at android.view.ViewRootImpl.<init>(ViewRootImpl.java:346)
at android.view.WindowManagerGlobal.addView(WindowManagerGlobal.java:248)
at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:69)
at android.app.Dialog.show(Dialog.java:286)
at activiteslogic.splash.SplashScreen.checkPlayServices(SplashScreen.java:65)
at activiteslogic.splash.SplashScreen.onCreate(SplashScreen.java:48)
at android.app.Activity.performCreate(Activity.java:5231)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2148)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2233)
at android.app.ActivityThread.access$800(ActivityThread.java:135)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5001)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
at dalvik.system.NativeStart.main(Native Method)
答案 0 :(得分:0)
用于将此上下文更改为youractivity.this
if (checkPlayServices()) {
Intent i = new Intent(SplashScreen.this, RegistrationIntentService.class);
startService(i);
}
private boolean checkPlayServices() {
GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
int resultCode = apiAvailability.isGooglePlayServicesAvailable(SplashScreen.this);
if (resultCode != ConnectionResult.SUCCESS) {
if (apiAvailability.isUserResolvableError(resultCode)) {
apiAvailability.getErrorDialog(SplashScreen.this, resultCode, PLAY_SERVICES_RESOLUTION_REQUEST)
.show();
} else {
Log.i(TAG, "This device is not supported.");
finish();
}
return false;
}
return true;
}
答案 1 :(得分:0)
您可以在checkPlayServices()
中表达自己的意图,并在完成Google内容后启动它。
private boolean checkPlayServices() {
GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
int resultCode = apiAvailability.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
if (apiAvailability.isUserResolvableError(resultCode)) {
apiAvailability.getErrorDialog(this, resultCode, PLAY_SERVICES_RESOLUTION_REQUEST)
.show();
} else {
Log.i(TAG, "This device is not supported.");
// start new activity when you are done here.
Intent i = new Intent(SplashScreen.this, ClientDriverMainScreen.class);
startActivity(i);
// close this activity
finish();
}
return false;
}
return true;
}