5

如果您有这样的文本视图+图像:

        <TextView  
            android:id="@+id/textView4"
            android:layout_width="0dp"
            android:layout_height="wrap_content" 
            android:drawableRight="@drawable/calendar" />

如何从 java 代码中的 textview 引用中获取 ImageView 引用?我想为图像设置点击事件,而不是文本视图。

有人知道吗?

谢谢。

4

1 回答 1

0

textView.getCompoundDrawables()将获得drawableLeft, drawableRight,drawableTopdrawableBottom项目。并setCompoundDrawables()设置它们。

于 2013-09-06T16:32:10.800 回答