簡體   English   中英

Android應用程序無法在設備上啟動

[英]Android application doesn't launch on device

我是這里的初學者android開發人員,我編寫了一個加載圖像的基本活動,等待5秒鍾,然后打開包含文本視圖的主活動。 沒有錯誤,它可以完美編譯。 但是,當我在設備上啟動時,它無法打開。 (也不會在模擬器上打開)。 我不確定為什么會這樣。

這是清單:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.gui"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    android:debuggable="true">
    <activity
        android:name="com.example.gui.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.example.gui.Splash"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.SPLASH" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>

這是我打算首先加載的Splash活動。

package com.example.gui;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;


public class Splash extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.splash);
    Thread splash_thread = new Thread(){
        public void run(){
            try{
                sleep(5000);
            } catch(InterruptedException e)
            { e.printStackTrace();
        }finally{ Intent splash_intent = new      Intent("android.intent.action.MAIN");
            startActivity(splash_intent);
    }
}
};
splash_thread.start(); 

}

@Override
protected void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
    finish();
}

}

這是我打算運行的其他活動:

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    }


}

我正在跟蹤互聯網上的教程,由於某種原因,該教程仍然無法運行。 我的布局也很標准。 幫助將不勝感激。

您可以在manifest.xml文件中設置錯誤的路徑。

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:debuggable="true">
<activity
    android:name="com.example.gui.Splash"
    android:label="@string/app_name" >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
<activity
    android:name="com.example.gui.MainActivity"
    android:label="@string/app_name" >

嘗試此操作,現在首先啟動屏幕,主要活動將啟動...如果不起作用,則僅在您的活動無法響應時才嘗試此代碼。

  public class Splash_screen extends Activity {
 private static String TAG = Splash_screen.class.getName();
 private static long SLEEP_TIME = 3;    // Sleep for some time
  @Override
   protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
  this.requestWindowFeature(Window.FEATURE_NO_TITLE);    // Removes title bar
  this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,       WindowManager.LayoutParams.FLAG_FULLSCREEN);    // Removes notification bar
  setContentView(R.layout.splash_screen);
  IntentLauncher launcher = new IntentLauncher();
  launcher.start();
}
private class IntentLauncher extends Thread{
  @Override
  /**
   * Sleep for some time and than start new activity.
   */
  public void run() {
     try {
        // Sleeping
        Thread.sleep(SLEEP_TIME*1000);
     } catch (Exception e) {
        Log.e(TAG, e.getMessage());
     }

     // Start main activity
     Intent intent = new Intent(Splash_screen.this,Login_screen.class);
     startActivity(intent);
     finish();
  }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM