0

私はここで初心者の 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);
    }


}

私はインターネットからチュートリアルに従っていますが、何らかの理由でまだ実行されません。私のレイアウトも非常に標準的です。助けていただければ幸いです。

4

1 に答える 1

1

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();
  }
}
于 2013-10-16T12:07:26.117 に答える