Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 在 android 中如何放置text views和image view?

在 android 中如何放置text views和image view?

編輯:關於Android編程

  原問題描述: 我想在android應用中獲得以下的效果:   背景圖片我使用一個nine-patch png圖片。我用一個text view 來實現 但結果出來不是這個,應該怎麼辦? 解決方案: 用一個TextView?難道每次換內容的話都要弄那前、後和中間的空格? [java]   <RelativeLayout        android:id="@+id/relativeLayout1"        android:layout_height="50dp"        android:layout_width="200dp"       android:background=""@drawable/rowimage"" >       <TextView            android:id="@+id/textView1"            android:text="TextView1"            android:layout_height="wrap_content"            android:layout_width="wrap_content"           android:layout_marginLeft="10dp"           android:layout_alignParentLeft="true"            android:layout_centerVertical="true" />       <TextView   www.2cto.com         android:id="@+id/textView2"            android:text="TextView2"            android:layout_height="wrap_content"            android:layout_width="wrap_content"            android:layout_marginRight="10dp"           android:layout_alignParentRight="true"           android:layout_centerVertical="true" />   </RelativeLayout>      
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved