這是代碼。爲什麼我的簡單應用程序無法運行?
package com.example.appfit;
import android.app.Activity;
import android.os.Bundle;
class Main extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.select);
}
}
我不能得到,當我試圖運行這個我不幸停下來,問題。另外這裏是select.xml
<?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" >
<TextView
android:id="@+id/tvSelect"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/select"
android:textSize="18sp"
android:layout_gravity="center"
/>
</LinearLayout>
什麼可能是問題?
下也表現
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.appfit"
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="com.example.appfit.Main"
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>
我不知道怎麼弄的錯誤?我真的很新鮮。
發表您的logcat – Manishika
嘗試通過連接到設備的日誌: '亞行-e logcat的'對於模擬器或設備的'adb -d logcat' - 它會給你完整的堆棧轉儲。 – elimirks
使用Logcat。也許發佈你的Android清單 –