私のアプリケーションでは、ここまたはここで見つかったのと同じ種類のエラーが発生していますが、Eclipse プロジェクトをクリーニングするための提案された解決策はうまくいきません。具体的には、レイアウト ファイルから 2 つの TextView をロードしようとするカスタム ListView アダプターがあります。最初の TextView は問題ありませんが、2 番目の TextView は ResourceNotFound 例外をスローし、アプリケーションをクラッシュさせます。
レイアウトファイル
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/roomNameText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="16dp"
android:text="Room name"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/roomNumText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/roomNameText"
android:layout_below="@+id/roomNameText"
android:text="Room number"
android:textAppearance="?android:attr/textAppearanceMedium" />
</RelativeLayout>
アダプタ
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
m = new ViewHolder();
convertView = mInflater.inflate(R.layout.room_row, null);
convertView.setTag(m);
} else {
m = (ViewHolder) convertView.getTag();
}
m.name = (TextView) convertView.findViewById(R.id.roomNameText);
m.name.setText(rooms.get(position).getName());
m.roomNumber = (TextView) convertView.findViewById(R.id.roomNumText);
m.roomNumber.setText(rooms.get(position).getRoomNumber());
return convertView;
}
また、R.java を編集して Eclipse にファイルを強制的に再生成させようとしましたが、それも機能しません。基本的に同じであるが完全に機能する異なるデータ用の別のアダプターがあるため、他に何を試すべきか本当にわかりません。また、ViewHolder は、誰かが疑問に思っている場合に備えて、アクセスされるビューの単なるコンテナー クラスである静的クラスです (コーディング スタイルに従って使用する必要があります)。