程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> layout-在 android 中如何放置text views和image view?

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

編輯:編程綜合問答
在 android 中如何放置text views和image view?

我想在android應用中獲得以下的效果:
CSDN移動問答
背景圖片我使用一個nine-patch png圖片。我用一個text view 來實現:

<ImageView
    android:id="@+id/myImageView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/rowimage" />

<TextView
    android:id="@+id/myImageViewText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/myImageView"
    android:layout_alignTop="@+id/myImageView"
    android:layout_alignRight="@+id/myImageView"
    android:layout_alignBottom="@+id/myImageView"
    android:layout_margin="1dp"
    android:gravity="center"
    android:text="Hello"
    android:textColor="#000000" />

但是結果確是這樣的:
CSDN移動問答

錯誤出現在哪裡呢?如何達到第一幅圖片的效果呢?

最佳回答:


用一個TextView?難道每次換內容的話都要弄那前、後和中間的空格?

<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 
        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 © 程式師世界 All Rights Reserved