メイン アクティビティのシンプルなリスト ビューを作成するために、activity_main.xml の RelativeLayout の下にリスト ビューを追加しました (間違った用語を使用している場合はご容赦ください。私は Android 開発に非常に慣れていません)。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listview"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
これはしばらくの間完全に機能しました。
行に赤いエラー サークルが表示されるようになったので、何をしたかを確認します
android:id="@+id/listview"
。エラーは次のとおりです。Unexpected namespace prefix "xmlns" found for tag ListView
Eclipse は、プロジェクトが機能していたとしても、プロジェクトをコンパイルさせてくれません。
前もって感謝します!