我有下一个问题:我经常使用RelativeLayout,就像Android 文档告诉我的那样。但是,几天以来,我不明白为什么,这不再起作用了:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/background"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/boton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="Button" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/boton"
android:layout_centerHorizontal="true"
android:layout_marginTop="60dp"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#000" />
</RelativeLayout>
这是我的布局,很简单。因此,根据这个,textView 应该在按钮下方,但是,它却出现在按钮上方!
.
Сan任何人解释我会发生什么?
编辑:问题不在于我尝试在设备上运行它,而是当我在 ADT Plugin for Eclipse 的图形布局上看到它时出现问题......