我正在尝试构建自定义列表视图,其中每行包含以下项目:
- 可点击的图片
- 文本
- 可点击的图片
我尝试了很多在其他线程中发现的自定义适配器,但直到现在都没有成功。两个可点击的图像都将使用该行上的文本。
这是我的行布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:orientation="horizontal">
<ImageButton
android:id="@+id/imageButton3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="Minus"
android:src="@drawable/minus" />
<EditText
android:id="@+id/item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_weight="1"
android:clickable="false"
android:ems="10"
android:focusable="false"
android:gravity="center_vertical|center_horizontal"
android:inputType="text" >
</EditText>
<ImageButton
android:id="@+id/imageButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="Plus"
android:src="@drawable/plus" />
</LinearLayout>
这是我的列表视图:
<ListView
android:id="@+id/listViewcart"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</ListView>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</ListView>
这是我当前的自定义适配器:
public class ListAdapter extends ArrayAdapter<Item> {
public ListAdapter(Context context, int textViewResourceId) {
super(context, textViewResourceId);
// TODO Auto-generated constructor stub
}
private List<Item> items;
public ListAdapter(Context context, int resource, List<Item> items) {
super(context, resource, items);
this.items = items;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi;
vi = LayoutInflater.from(getContext());
v = vi.inflate(R.layout.shoppingcart_row, null);
}
Item p = items.get(position);
if (p != null) {
TextView tt = (TextView) v.findViewById(R.id.item);
if (tt != null) {
tt.setText(p.getText());
}
}
return v;
}
}
这是我尝试在我的主课中调用它的方法:
List test = new ArrayList<String>();
try {
test.add("test1");
test.add("test2");
test.add("test3");
ListView cart = (ListView) findViewById(R.id.listViewcart);
ListAdapter customAdapter = new ListAdapter(this, R.layout.shoppingcart_row, test);
cart.setAdapter(customAdapter);
}
catch (Exception e) {
e.printStackTrace();
System.out.println(test);
}
我正在获得 NPE。我打印了测试列表以防万一,它表明我正在添加 3 个元素。我认为问题出在自定义适配器中,但我无法弄清楚。
我也尝试使用 ArrayList 而不是 List 但我无法修改我的自定义适配器以使用它。有人可以看到我在这里做错了什么吗?谢谢你。
编辑:
logcat 错误日志:
java.lang.NullPointerException
at com.example.hrana.za.vkushti.ShoppingCart.additems(ShoppingCart.java:109)
at com.example.hrana.za.vkushti.ShoppingCart.onCreate(ShoppingCart.java:49)
at android.app.Activity.performCreate(Activity.java:5008)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2023)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
at android.app.ActivityThread.access$600(ActivityThread.java:130)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4745)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
at dalvik.system.NativeStart.main(Native Method)
[test1, test2, test3]
编辑 2
additems() 方法:
public void additems()
{
List test = new ArrayList<String>();
try{
test.add("test1");
test.add("test2");
test.add("test3");
ListView cart = (ListView) findViewById(R.id.listViewcart);
ListAdapter customAdapter = new ListAdapter(this, R.layout.shoppingcart_row, test);
cart.setAdapter(customAdapter); // line 109
}
catch (Exception e){
e.printStackTrace();
System.out.println(test);
}
}