如何在Android中以相对布局设置图像视图的位置?

时间:2011-08-28 15:43:28

标签: android android-layout

我正在尝试将图片放在TextView RelativeLayout下方,但它不起作用。当我使用android:layout_below设置其位置时。这是我的xml

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="#ccc"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<TextView 
android:id="@+id/app_details_1" 
android:text="@string/app_details_1" 
android:textColor="#347"
android:gravity="center"
android:textSize="9pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>  

<ImageView 
android:id="@+id/logo"
android:src="@drawable/secs"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_below="@+id/appdetails_1" <!-- I'm setting it here -->
/>

</RelativeLayout>

相反,它只是将图像放在屏幕的左上角。我该如何定位? layout_below定位代码是否错误?

2 个答案:

答案 0 :(得分:4)

你的xml有一个错误。必须是

android:layout_below="@id/app_details_1"

答案 1 :(得分:0)

它应该没问题,但首先尝试通过对textView使用layout_alignParentTop =“true”来确保textView位于顶部,并查看它是否有效。