我有一個自定義對話框,其中顯示了一些結果。結果文本可以具有不同的大小,並且在對話框中有很多可用空間時。我如何做autoresize textView的結果和autoresize佈局?自動調整文本視圖和佈局
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="300dp"
android:background="@drawable/dialog_bg"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.01"
android:gravity="center"
android:text="Scores"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textSize="18sp"
android:textStyle="italic"
android:typeface="serif" />
<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="80dp"
android:layout_marginBottom="20dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="10dp"
android:layout_weight="0.04"
android:background="@null"
android:cursorVisible="false"
android:editable="false"
android:ems="10"
android:focusable="false"
android:focusableInTouchMode="false"
android:gravity="top|left"
android:inputType="textMultiLine|textNoSuggestions|textFilter"
android:textColor="@android:color/white"
android:textSize="16sp"
android:textStyle="italic"
android:typeface="serif" >
<requestFocus />
</EditText>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="42dp"
android:layout_margin="10dp" >
<Button
android:id="@+id/ok"
android:layout_width="70dp"
android:layout_height="wrap_content"
android:background="@drawable/ok"
android:onClick="okAction" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="0.99" >
</LinearLayout>
<Button
android:id="@+id/share"
android:layout_width="91dp"
android:layout_height="wrap_content"
android:background="@drawable/share"
android:onClick="shareAction" />
</LinearLayout>
</LinearLayout>