当前位置: 代码迷 >> Android >> android中textView四周显示图片
  详细解决方案

android中textView四周显示图片

热度:4   发布时间:2016-05-01 19:11:33.0
android中textView周围显示图片

在Android 中,TextView 是继承于View,而Button是继承于TextView.这个有一个API就可以实现的。

android:drawableBottomsetCompoundDrawablesWithIntrinsicBounds(int,int,int,int)The drawable to be drawn below the text.?
android:drawableLeftsetCompoundDrawablesWithIntrinsicBounds(int,int,int,int)The drawable to be drawn to the left of the text.?
android:drawablePaddingsetCompoundDrawablePadding(int)The padding between the drawables and the text.?
android:drawableRightsetCompoundDrawablesWithIntrinsicBounds(int,int,int,int)The drawable to be drawn to the right of the text.?
android:drawableTopsetCompoundDrawablesWithIntrinsicBounds(int,int,int,int)The drawable to be drawn above the text.?

  相关解决方案