-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

例子

两颗星。一个相对于父级(绑定到左上角)和一个相对于第一个星(绑定到左上角到第一个星 - 请参见layout_belowlayout_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 回答