私は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>
ImageViewの代わりに相対/線形レイアウトの背景を使用しないのはなぜですか? –