我在按鈕中的文本的大小有問題。我有我使用weightSum的佈局,我的按鈕寬度是匹配的父項,高度是30%。一切工作正常,但是當我在模擬器上更改屏幕大小時,我的文本仍然很小。我怎樣才能改變大小的文字取決於屏幕的大小? 這是XML:按鈕和文本的大小
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="100" >
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button"
android:layout_weight="30" />
</LinearLayout>
有什麼辦法可以全自動做到這一點?