当我点击项目的任何地方时,事件onClick ImageView调用

时间:2013-10-17 17:56:12

标签: android image onclick listener android-arrayadapter

我的Listener出现问题,我使用ArrayAdapter创建一个列表,并使用WML为每个项目设置文本和图像:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/item_macro"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:layout_gravity="left"
        android:textColor="#000000"
        android:textSize="16sp"
        android:textStyle="bold" />

    <ImageView
        android:id="@+id/delete"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:contentDescription="@string/button_delete"
        android:src="@drawable/button_delete" />

</RelativeLayout>

是图像的倾听者。 但是,当我点击该项目时,该事件正在调用,当我点击图像时,该事件就是这样。

我的适配器类:

public class ListEditable extends ArrayAdapter<Integer> implements OnClickListener, OnLongClickListener {


private final int rowResourceId;

public ListEditable(Context context, int resource, ArrayList<Integer> macros) {
    super(context, resource, macros);
    this.rowResourceId = resource;

}

@Override
public View getView(int position, View convertView, ViewGroup parent) {

    LayoutInflater inflater = (LayoutInflater) this.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    View rowView = (View) inflater.inflate(rowResourceId, parent, false);
    TextView textView = (TextView) rowView.findViewById(R.id.item_macro);
    ImageView imageView = (ImageView) rowView.findViewById(R.id.delete);
    imageView.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            System.out.println("toast");

            }
        });
    textView.setText(this.getItem(position));
    return rowView;

} 

我还有另外一个问题,也许是出于同样的原因, 当我点击我的图像时,我没有图像焦点,但我有:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >

    <item android:drawable="@drawable/button_delete_focus" android:state_pressed="true"/>
    <item android:drawable="@drawable/button_delete_focus" android:state_focused="true"/>
    <item android:drawable="@drawable/button_delete"/>

</selector>

提前感谢您的回答,并为我糟糕的英语抱歉:)

1 个答案:

答案 0 :(得分:0)

如果我理解你的问题。解决方案是:

将ImageView的android:layout_width="fill_parent"更改为android:layout_width="wrap_content"

在您使用RelativeLayout时,您已将imageView的宽度值指定为fill_parent,这就是为什么它占据列表中项目的整个宽度的原因。

使用以下

更改ImageView
<ImageView
         android:id="@+id/delete"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:contentDescription="@string/button_delete"
        android:src="@drawable/button_delete" />

这对我有用。希望它也适合你 如果您需要更多帮助,请告诉我