我正在尝试构建自定义列表视图,其中每行包含以下项目:
我尝试了很多我在其他线程中找到的自定义适配器,但直到现在都没有任何成功。两个可点击图像都将使用该行上的文本。
这是我的行布局:
<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);
}
}
答案 0 :(得分:0)
试试这个:
在您的主要课程中:List<String> test = new ArrayList<String>();
:private List<String> items;
答案 1 :(得分:0)
它收到错误的行基本上是说它找不到你的ListView
。这是因为您可能会混淆ListView
的ID。在此错误中, cart null 。
将Activity
设置为使用正确的XML文件。
setContentView(R.layout.shoppingcart);
更改此行
ListView cart = (ListView) findViewById(R.id.listViewcart);
到
ListView cart = (ListView) findViewById(android.R.id.list);
现在使用ListView
更改您的XML布局,并删除其他ListView
。
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</ListView>
现在更改自定义适配器ListAdapter
以使用String
而不是Item
。实例化适配器时,您将收到无效的强制转换错误。
以下是使用ArrayList<String>
代替List<Item>
的适配器。
public class ListAdapter extends ArrayAdapter<String> {
public ListAdapter(Context context, int textViewResourceId) {
super(context, textViewResourceId);
// TODO Auto-generated constructor stub
}
private ArrayList<String> items;
public ListAdapter(Context context, int resource, List<String> 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);
}
String p = items.get(position);
if (p != null) {
TextView tt = (TextView) v.findViewById(R.id.item);
if (tt != null) {
tt.setText(p.getText());
}
}
return v;
}
}
答案 2 :(得分:0)
确保在调用addItems()之前在Activity中调用了setContentView(R.layout.layout);