我有這樣的代碼:使得TEXTSIZE適應的EditText
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<EditText
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:hint="@string/tip_value" />
<EditText
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:hint="@string/tip_value" />
<EditText
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:hint="@string/tip_value" />
</LinearLayout>
我怎樣才能讓TEXTSIZE調整到EditText上的高度?
我的意思是大寫字母跨越編輯文本(這可能是因爲LinearLayout中的不同大小)
提前感謝的整體高度。
但我想讓他們 「權重」。跨越整個空間..在你的例子中,我確實需要設置textSize,它不會調整到屏幕上。 – 2013-05-14 18:57:16