我正在使用这个东西 -
<EditText
android:id="@+id/searchFor"
android:layout_width="240dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#FFFFFF"
android:padding="5dp"
android:hint="Search Here"
android:drawableRight="@drawable/forward"
android:textAppearance="?android:attr/textAppearanceSmall" />
现在,因为我已经将图像设置为此edittext,如何在该图像上触发点击事件注意它是一个Edittext意味着我将输入我的查询我尝试点击edittext然后它会被解雇即使我输入
答案 0 :(得分:2)
不幸的是,没有直接的方法可以做到这一点。您必须为onTouchListener
实施EditText
,如果操作事件为ACTION_UP
,请检查触摸的x坐标是否与您的可绘制的x坐标相交