欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android TextView和ImageView简单说明

程序员文章站 2023-11-29 08:10:40
复制代码 代码如下: 
复制代码 代码如下:

<?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了!