我有以下布局
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/flowerpower">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_y="200dip"
android:textColor="#000000"
android:text="Test"/>
</AbsoluteLayout>
现在我遇到的问题是,在不同的屏幕尺寸显示上,TextView 不在正确的位置,因为它是一个绝对布局。如何使这个与RelativeLayout一起工作?我建议这是正确的解决方案?真实布局?