如果你有这样的textview +图像:
<TextView
android:id="@+id/textView4"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:drawableRight="@drawable/calendar" />
如何从java代码中的textview引用中获取ImageView引用? 我想为图像设置点击事件,而不是文本视图。
有人知道吗?
感谢。
答案 0 :(得分:0)
textView.getCompoundDrawables()
会获得drawableLeft
,drawableRight
,drawableTop
和drawableBottom
项。并setCompoundDrawables()
设置它们。