首先,我很抱歉,因为我知道这个问题的变体已经被问了好几次,但我似乎找不到任何与我匹配的东西。
在我的代码中,出于某种原因,调用
TextView tt = (TextView) v.findViewById(R.id.top_text);
返回空值。我知道 R.id.top_text 返回查看调试器的正确值。同样,v 是从充气机创建的视图。我认为,如果定义了单个行的 xml 文件并且其中的特定项目返回了合理的值,则 findView 调用不应返回 null。
下面是自定义适配器和两个 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>