Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android TextView和ImageView簡單說明

Android TextView和ImageView簡單說明

編輯:Android開發實例

代碼如下:

<?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了!
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved