码迷,mamicode.com
首页 > 移动开发 > 详细

Android - TextView添加图片

时间:2015-02-10 09:17:33      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:mystra   android   textview   imageview   drawabletop   

TextView添加图片


本文地址:http://blog.csdn.net/caroline_wendy


Android UI设计时,经常需要在文字周围添加图片

比较简单的方法是直接使用Layout把View组合到一起:

<ImageView
     android:layout_width=“wrap_content"
     android:layout_height="wrap_content"
     android:src="@drawable/icon_home_askdoc"
     android:scaleType="fitXY"
     android:layout_above="@+id/asking_doctor"
     android:layout_centerHorizontal="true"/>
ImageView,适配图片大小,填充"scaleType:fitXY",视图的水平居中"centerHorizontal:true"。

也可以直接在TextView的周围添加图片(drawable):
<TextView
     style="@style/HomepageGridMenuTextStyle"
     android:drawablePadding="8dp"
     android:drawableTop="@drawable/icon_home_avatar"
     android:text="@string/home_avatar"/>
TextView,drawableTop在文字上面添加图片,但是无法调节图片的属性



技术分享



Android - TextView添加图片

标签:mystra   android   textview   imageview   drawabletop   

原文地址:http://blog.csdn.net/caroline_wendy/article/details/43698683

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!