-1

相対ビュー内のアクティビティで画像の位置を制御しようとしています。しかし、私が何をしても。画像は常に画面の中央に表示されます。

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="100dp"
        android:layout_marginTop="1dp"

        android:src="@drawable/hp" />

</RelativeLayout>

私が整列しようとしたにもかかわらず、私が考えることができるすべて。

4

1 に答える 1

0

2 つ星。1 つは親に相対的 (左上にバインド) で、もう 1 つは最初のスターに相対的 (左上を最初のスターにバインド -layout_belowおよびを参照layout_toRightOf)。

レンダリングされた例

ソース

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:src="@android:drawable/btn_star" />

    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/imageView1"
        android:layout_toRightOf="@+id/imageView1"
        android:src="@android:drawable/btn_star_big_on" />

</RelativeLayout>
于 2012-10-01T22:26:10.310 に答える