首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 平面设计 > 图形图像 >

Android TextView跟ImageView犀利组合

2013-03-27 
Android TextView和ImageView犀利组合今天偶然间发现一个属性,让我兴奋很久,跟大家分享一下(知道的不要见

Android TextView和ImageView犀利组合

今天偶然间发现一个属性,让我兴奋很久,跟大家分享一下(知道的不要见笑哈,呵呵):


<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical" >    <TextView         android:layout_height="wrap_content"        android:layout_width="wrap_content"        android:drawableLeft="@drawable/icon"        android:text="@string/app_name"        /></LinearLayout>

相信看到这个标签的时候大家都明白了把!

        android:drawableLeft=""
        android:drawableRight=""
        android:drawableTop=""
        android:drawableBottom=""

四个标签,android:drawablePadding=""可以设置边框大小,我觉得很使用,不用想以前那么用RelativeLayout中去light或者right了!

热点排行