如何使我的布局Textview根据所有AVD自动调整

时间:2011-09-19 12:43:11

标签: android android-layout

现在发生的是我的布局的TextView不适应10.1或更高等更高的AVD。 现在我想让我的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>

1 个答案:

答案 0 :(得分:2)

只需替换此

即可

机器人:layout_height = “38dp”

WRAP_CONTENT,