我剛剛開始android開發,請耐心等待。新手Android故障:應用程序打開錯誤的main.xml?
我的問題是,當我在模擬器中運行我的應用程序時,彈出屏幕後,彈出的下一個屏幕來自與我工作的應用程序完全不同的應用程序。兩個屏幕衝突都被命名爲相同main.xml),因此可能與它有關,但它們位於完全不同的文件夾和工作空間中。我一直試圖用我的代碼來試驗我的啓動畫面完全顯示後停止屏幕,以便我可以更好地瞭解發生問題的位置,但不成功。
有沒有人有任何想法可能會出錯或我應該至少開始尋找解決這個問題?
文件在eclipse:http://imgur.com/kORdH
主要活動類:
package com.mwmnj.criticmatch;
import android.app.Activity;
import android.os.Bundle;
public class CriticMatchActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
main.xml中:
<?xml version="1.0" encoding="utf-8" ?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:padding="20dp"
android:weightSum="1">
<TextView android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@+id/textView1" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Hello!"
android:layout_gravity="center" />
<TextView android:textAppearance="?android:attr/textAppearanceMedium"
android:id="@+id/textView2" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="criticmatch">android:layout_gravity="center"></TextView>
<Button android:text="Proceed" android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@+id/button1"
android:layout_marginTop="50dp" />
</LinearLayout>
飛濺類:
package com.mwmnj.criticmatch;
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 timer = new Thread(){
public void run(){
try{
sleep(5000);
} catch (InterruptedException e){
e.printStackTrace();
}finally{
Intent openStartingPoint = new Intent("matt.meyer.criticmatch.MENU");
startActivity(openStartingPoint);
}
}
};
timer.start();
}
}
splash.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/crbackground"
>
</LinearLayout>
的AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mwmnj.criticmatch"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".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=".CriticMatchActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="com.mwmnj.criticmatch.CRITICMATCHACTIVITY"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
嘗試在eclipse中的**其他**項目上單擊鼠標右鍵,然後選擇「關閉項目」,看看它是否做了什麼。確保你正在運行正確的項目 - 我知道這聽起來很愚蠢,但我一直都這樣做! –
你有沒有得到這個排序?我昨晚測試了這個方法(使用intent的動作名稱),一切都完美無缺。 –