Android TextView和ImageView简单说明

复制代码 代码如下:

 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 
            android:layout_height="wrap_content" 
        android:layout_width="wrap_content" 
        android:drawableLeft="@drawable/icon" 
        android:text="@string/app_name" 
        /> 

 
 

相信看到这个标签的时候大家都明白了把!
复制代码 代码如下:

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

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

你可能感兴趣的:(Android TextView和ImageView简单说明)