Теперь происходит то, что TextView моего макета не настраивается на более высокие AVD, такие как 10.1 или более ..
Теперь я хочу, чтобы мой TextView автоматически настраивался на каждом экране, т.е. запускался на каждом AVD.
, пожалуйста, подскажите, как это сделать
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:weightSum="1">
<TextView
android:text="this is my First screen"
android:layout_height="38dp" android:layout_weight="0.05" android:layout_width="fill_parent"/>
<Button android:text="NEXT" android:id="@+id/next" android:layout_width="264dp" android:layout_height="34dp"></Button>
</LinearLayout>