我开始发展,我尝试在Youtube上关注set of tutorials。在尝试按照教程1.8进行操作后,我感到很困惑。
我启动应用程序(使用模拟器)会发生什么,然后打开应用程序。然后它进入splash.xml屏幕,这只是一个背景,持续五秒钟。然后,它会回到MainActivity.java屏幕,这是主屏幕。不幸的是,在显示启动屏幕五秒后,它告诉我应用程序已停止。
的AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eduardopelaez.minecraftforums"
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" >
<activity
android:name=".MainActivity"
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>
splash.xml(打开应用程序后显示5秒钟):
<?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:background="@drawable/minecraft_wallpaperrepeating"
android:orientation="vertical" >
</LinearLayout>
MainActivity.java(假设是在splash.xml之后,但这是它崩溃的地方):
package com.eduardopelaez.minecraftforums;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle TravisIsAwesome) {
super.onCreate(TravisIsAwesome);
setContentView(R.layout.splash);
Thread logoTimer = new Thread() {
public void run() {
try {
sleep(5000);
Intent menuIntent = new Intent(
"com.eduardopelaez.minecraftforums.MAINACTIVITY");
startActivity(menuIntent);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
finally {
finish();
}
}
};
logoTimer.start();
}
@Override
public boolean onCreateOptionsMenu(android.view.Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
答案 0 :(得分:0)
Intent menuIntent = new Intent(
MainActivity.this, MainActivity.class);
startActivity(menuIntent);
答案 1 :(得分:0)
意图的目标是从现有活动开始其他活动。所以你应该有像splash事件一样的东西,在那个splash事件中你声明你对mainActivity的新意图(2个java文件)。
即便如此,你似乎犯了两个错误:格式不正确应该是新意图(context,activity_name)和你做了新意图(“”activity_name)
你的活动com.eduardopelaez.minecraftforums.MainActivity not com.eduardopelaez.minecraftforums.MAINACTIVITY