我试图在相对视图中控制图像在活动上的位置。 但无论我做什么。 pic总是出现在屏幕中间。
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="100dp"
android:layout_marginTop="1dp"
android:src="@drawable/hp" />
</RelativeLayout>
即使我尝试对齐和我能想到的一切。
答案 0 :(得分:0)
示例强>
两颗星。一个相对于父项(绑定到左上角)和一个相对于第一个星形(左上角到第一个 - 见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>