CompoundDrawable 是带有图像和文本的 TextView 对吗?那么如果是两者的结合,你怎么能把文字放在图像的中心呢?或者如果文本比图像小一点,你怎么能把图像放在文本的中心?或者如果图像小于文本怎么办?我如何使用 覆盖这些场景XML
?
下面是一个 CompoundDrawable 的示例:
<TextView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/image"
android:text="@string/text" />