最初に、この質問のバリエーションが何度か尋ねられていることを知っているのでお詫び申し上げますが、私のものに一致するものが見つからないようです.
私のコード内では、何らかの理由で呼び出し
TextView tt = (TextView) v.findViewById(R.id.top_text);
null を返します。デバッガーを見ると、R.id.top_text が適切な値を返すことはわかっています。同様に、v はインフレータから作成されたビューです。個々の行の xml ファイルが定義されていて、その中の特定の項目が適切な値を返している場合、findView 呼び出しは null を返すべきではないと思います。
以下は、カスタム アダプターと 2 つの xml ファイルの完全なコードです。
どんな助けでも大歓迎です。
ありがとう
public class ContactAdapter extends ArrayAdapter<ResultSet>{
Context _context;
int _layoutResourceId;
ArrayList<ResultSet> _results;
public ContactAdapter(Context context, int layoutResourceId,ArrayList<ResultSet> results) {
super(context, layoutResourceId,results);
_context = context;
_layoutResourceId = layoutResourceId;
_results = results;
}
@Override
public View getView(int position, View convertView,ViewGroup parent){
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.list_row, null);
}
ResultSet row = _results.get(position);
if (row != null) {
TextView tt = (TextView) v.findViewById(R.id.top_text);
if (tt != null) {
tt.setText("Name: "+row.getName()); }
}
return v;
}
<?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/list_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="VOKAL CONTACTS"
android:textAppearance="?android:attr/textAppearanceLarge" />
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="385dp" >
</ListView>
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp">
<ImageView
android:id="@+id/img_icon"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_marginBottom="5dp"
android:layout_marginRight="15dp"
android:layout_marginTop="5dp"
android:gravity="center_vertical" />
<TextView
android:id="@+id/top_text"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp"
android:gravity="center_vertical"
android:textColor="#000000"
android:textSize="22dp"
android:textStyle="bold" />
</RelativeLayout>