我已經用XML寫了一個應用程序,但我仍然沒有用java代碼編寫類。但模擬器可以顯示我的應用程序的名稱,然後它說「不幸的是,應用程序已停止。」我要爲這個問題做些什麼??!錯誤在Android模擬器上運行應用程序
這是我的代碼:
<?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"
>
<Textview
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/TextView2"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/Button"
/>
</LinearLayout>
,它通常會產生某種MainActivity類別,即使你沒有寫Java代碼。關於發生了什麼,應該有一些Logcat輸出,你可以發佈嗎? –
@Chad Campbell:java.lang.classLoader.loadClass(ClassLoader.java.501)at android.view.LayoutInflater.onCreateView(LayoutInflater.java:552) .... –
嗨@SetarehNaraghi。很好的問題 –