2012-03-11 16 views
0

私はRelativeLayoutを使用してイメージにtextviewを配置しています。これは、シミュレータで試したすべてのデバイスの画面上の場所を変更するという問題です。カップルデバイスの相対レイアウト

<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_gravity="top|center" 
    android:layout_marginTop="-70dp" > 

    <ImageView 
     android:id="@+id/imageView2" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:src="@drawable/propfile" /> 


    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="@string/str_phone" 
     android:textColor="@color/black" 
     android:layout_marginTop="337dp" android:layout_marginLeft="133dp" 
     android:onClick="onClick"     
     android:clickable="true"/> 
</RelativeLayout> 
+0

ImageViewの代わりに相対/線形レイアウトの背景を使用しないのはなぜですか? –

答えて

0

イメージを相対レイアウトの背景にしてからテキストビューを使用することができます

関連する問題