2

カスタム オブジェクト アダプタを作成しようとしていますが、コードの一部でオブジェクトを ID で参照する必要があります。ただし、ID が存在しないというエラーが表示されます。

private static class GeoAreaAdapter extends BaseAdapter implements Filterable{
    private LayoutInflater mInflater;   
    private int resource;
    private GeoArea _myGeoArea;
public GeoAreaAdapter(Context context, int resource, GeoArea myGeoArea) {
    mInflater = LayoutInflater.from(context);
    _myGeoArea = myGeoArea;
}
public View getView(int position, View convertView, ViewGroup parent) {
    LinearLayout GeoAreaView;
    if (GeoAreaView == null) { 
        GeoAreaView = new LinearLayout(mInflater.getContext());
        String inflater = Context.LAYOUT_INFLATER_SERVICE;
        LayoutInflater vi;
        vi = (LayoutInflater)mInflater.getContext().getSystemService(inflater);
        vi.inflate(resource, GeoAreaView, true);
    }
    else {
        GeoAreaView = (LinearLayout) convertView;
    }

    TextView name = (TextView) convertView.findViewById(R.id.txtGeoAreaName);
    name.setText(_myGeoArea.name);

    return convertView;
}
....
}

「R.id.txtGeoAreaName」で発生します。

これが私のレイアウトです:

<?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:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:id="@+id/txtGeoAreaName" />

</LinearLayout>

ご覧のとおり、「txtGeoAreaName」は確実に定義されています。

私は何を間違っていますか?

4

2 に答える 2

2

この方法でレイアウトを膨らませる必要があります。

LayoutInflater li = LayoutInflater.from(getContext());
convertView = li.inflate(R.layout.yourlayoutid, null);

そして、ビューを見つけることができます:

convertView.findViewById(R.id.someid);
于 2013-11-08T02:46:17.127 に答える
0

TextView の id 属性として「txtGeoAreaName」を使用します

<?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:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:id="@+id/txtGeoAreaName" />
</LinearLayout>

次のように getView メソッドを更新します。

public View getView(int position, View convertView, ViewGroup parent) {     
    if (convertView == null) { 
        convertView = mInflater.inflate(resource, GeoAreaView, true);
    }
    TextView name = (TextView) convertView.findViewById(R.id.txtGeoAreaName);
    name.setText(_myGeoArea.name);
    return convertView;
}

また、ListView のパフォーマンスを向上させるために、Holder パターンを使用してビューを再利用する必要があります。

于 2013-11-08T03:06:16.840 に答える