在我的应用程序中,我有一个右侧带有搜索图标的 EditText
。我使用了下面给出的代码。
<EditText
android:id="@+id/search"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="4dip"
android:layout_weight="1"
android:background="@drawable/textfield_search1"
android:drawableLeft="@drawable/logo"
android:drawableRight="@drawable/search_icon"
android:hint="Search Anything..."
android:padding="4dip"
android:singleLine="true" />
我想设置 onClickListener
的搜索图标图像分配到右边的绘图
这怎么可能?