服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android TextView和ImageView简单说明

Android TextView和ImageView简单说明

2021-01-09 15:24Android教程网 Android

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

延伸 · 阅读

精彩推荐