我想要文本區域有5行高度。我用了下邊的代碼。
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:singleLine="false"
android:lines="5"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip" />
文本區域看起來是不錯的,但是光標在文本區域的中間閃爍。我想要光標在文本區域的第一行的第一個字符閃爍。
使用
android:gravity="top"
希望對你有幫助