Android开发线程问题

时间:2013-12-26 19:04:03

标签: java android eclipse multithreading

我在eclipse中制作一个Android应用程序我的问题是,每次我在我的模拟器上运行它在5秒后关闭并给我一条消息“不幸的是,'app name'已经停止工作”。我认为这是由于线程带来了我放在drawable-hdpi文件夹中的图片,因为该线程意味着将图片调出5秒然后启动程序。任何帮助是极大的赞赏。

package com.thenewboston.travis;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

public class Splash extends Activity{

@Override
protected void onCreate(Bundle t) {
    // TODO Auto-generated method stub
    super.onCreate(t);
    setContentView(R.layout.splash);
 new Thread(){
        public void run(){
            try{
            sleep(5000);
            }catch(Exception e){
                e.printStackTrace();
            }finally{
                Intent openStartingPoint= new Intent("com.thenewboston.travis.STARTINGPOINT");
                startActivity(openStartingPoint);
            }
        }
    }.start(); }}

Android Manifest Code

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

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

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

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.thenewboston.travis.startingPoint"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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


</application>

</manifest>

这是我的启动文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" 
android:background="@drawable/yaron_dynamics">


</LinearLayout>

2 个答案:

答案 0 :(得分:1)

您不能在与UI线程不同的线程中startActivity

答案 1 :(得分:1)

您无法从后台线程启动Activity。而不是线程,使用Handler

Runnable r = new Runnable() {
   public void run() {
       Intent i = new Intent("com.thenewboston.travis.STARTINGPOINT");
       startActivity(i);
   }
};

new Handler().postDelayed(r, 5000);