我正在尝试构建自定义列表视图

时间:2013-03-19 14:26:02

标签: android android-layout listview

我正在尝试构建自定义列表视图,其中每行包含以下项目:

  • 可点击图片
  • 文本
  • 可点击图片

我尝试了很多我在其他线程中找到的自定义适配器,但直到现在都没有任何成功。两个可点击图像都将使用该行上的文本。

这是我的行布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id`enter code here`="@+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>

这是我当前的自定义适配器:

package com.example.hrana.za.vkushti;

import java.util.List;

import android.content.ClipData.Item;

import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;

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>();
    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);

当我尝试打开它时,应用程序崩溃

3 个答案:

答案 0 :(得分:0)

我做了类似的事情,我在XML布局文件中创建了一个自定义视图,然后在运行时使用LayoutInflater添加到ListView。然后,当您将自定义视图添加到ListView时,您可以更改视图组件的值。

    ViewGroup parent = (ViewGroup) findViewById(R.id.llListing);
    View view = null;

// create new article_listing view                      
    view = (View)LayoutInflater.from(this.context).
    inflate(R.layout.article_listing, parent, false);

    // add title to title text in the newly added custom view
((TextView) ((ViewGroup) ((ViewGroup) view).getChildAt(0)).getChildAt(3)).setText(sd.getArticleListing().get(l).getTitle());

    // add to parent LinearLayout
    this.parent.addView(view);

我为格式化道歉,仍然试图找出stackoverflow中的代码块。

这是LayoutInflater的简化示例。

因此,创建一个布局XML,表示列表中每个条目的全部内容。然后将每个自定义视图添加到列表中并修改值。然后将它们添加到父视图和列表中。 我用线性布局做了我的工作,它很漂亮。

答案 1 :(得分:0)

将此添加到您的xml

<ListView
android:id="@android:id/list"
.../>

并扩展ListActivity

或在xml中添加ListView,其中包含您尝试访问的名称

ListView cart = (ListView) findViewById(R.id.listViewcart);

然后你可以扩展Activity

修改

如果您使用

setContentView(R.layout.row); //row is the xml you posted above and put a ListView in

然后您可以使用您拥有的ListView

否则,只需extend ListActivity并使用我在上面提供的ListView

答案 2 :(得分:-1)

请参阅https://github.com/cyrilmottier/ListViewTipsAndTricks

创建自定义控制器,该控制器不继承父视图点击。像那样:

public class DontPressWithParentButton extends Button {

public DontPressWithParentButton(Context context) {
    super(context);
}

public DontPressWithParentButton(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public DontPressWithParentButton(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}

@Override
public void setPressed(boolean pressed) {
    // Make sure the parent is a View prior casting it to View
    if (pressed && getParent() instanceof View && ((View) getParent()).isPressed()) {
        return;
    }
    super.setPressed(pressed);
}

}