Android ListView - 使用整行

时间:2015-04-06 06:12:31

标签: android listview

我有一个带有以下布局的自定义列表视图(list_single.xml):

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="match_parent" >
    <TableRow android:layout_width="fill_parent">
        <ImageView
            android:id="@+id/img"
            android:layout_width="64dp"
            android:layout_height="64dp"/>
        <TextView
            android:id="@+id/txt"
            android:textSize="24dp" android:textStyle="bold"
            android:paddingTop="20dp" android:paddingLeft="10dp"
            android:layout_width="fill_parent"
            android:layout_height="64dp" />
    </TableRow>
</TableLayout>

然后我有一个分配此布局的CustomList 扩展程序类

public class CustomList extends ArrayAdapter<String> {
    private final Activity context;
    private final String[] web;
    private final Integer[] imageId;
    public CustomList(Activity context,
                String[] web, Integer[] imageId) {
            super(context, R.layout.list_single, web);
            this.context = context;
            this.web = web;
        this.imageId = imageId;
    }
    @Override
    public View getView(int position, View view, ViewGroup parent) {
        LayoutInflater inflater = context.getLayoutInflater();
        View rowView= inflater.inflate(R.layout.list_single, null, true);
        TextView txtTitle = (TextView) rowView.findViewById(R.id.txt);
        ImageView imageView = (ImageView) rowView.findViewById(R.id.img);
        txtTitle.setText(web[position]);
        imageView.setImageResource(imageId[position]);
        return rowView;
    }
}

然后在OnCreate事件处理程序中添加一个监听器:

list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view,
                                    int position, long id) {

然而,行中唯一可点击的区域是图标,但我希望整行可以点击。我在这里检查了一些其他类似的问题,但我找不到TableLayout的解决方案。

非常感谢

2 个答案:

答案 0 :(得分:0)

你应该设置

android:focusableInTouchMode="true"
android:focusable="true"
表格布局中的

。一般来说,使用表格布局和listview的行布局不是一个好主意。对于您的情况,您可以通过任何其他布局轻松完成此操作,例如linearlayout,relativelayout等

答案 1 :(得分:0)

按照你的建议我用相对布局替换了表,现在一切都按预期工作。十分感谢大家。非常感谢。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ImageView
        android:id="@+id/img"
        android:layout_width="64dp"
        android:layout_height="64dp" android:paddingLeft="20dp" />
    <TextView
        android:id="@+id/txt"
        android:textSize="24dp" 
        android:textStyle="bold"
        android:paddingTop="20dp" 
        android:paddingLeft="84dp"
        android:layout_width="fill_parent"
        android:layout_height="64dp" />
</RelativeLayout>

很抱歉无法投票(它至少需要15分,我没有,因为我是n00b)非常感谢你的帮助。非常感谢。