次のレイアウトがあります
<?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 で機能させるにはどうすればよいですか? これが正しい解決策だと思いますか?RealtiveLayout?