我想禁止用户扩展文本字段,如图所示。它应该看起来像Password字段,但是两者都允许使用空格键或返回键进行以下操作。
答案 0 :(得分:1)
将all
填充设置为类似2dp
的内容,然后将maxLines
设置为不会与文本重叠的内容。可能是2
或者您只关心1行,然后设置singleLine=true
。
TextView
的XML看起来像这样:
<TextView
android:layout_width="fill_parent"
android:layout_height="200dp"
android:text="Hello World"
android:id="@+id/txtSomeIdForTextView"
android:layout_alignParentTop="true"
android:layout_alignParentStart="false"
android:padding="2dp"
android:textSize="16dp" />
看看这篇文章开始使用UI,旧的但仍然很好: https://mobiforge.com/design-development/understanding-user-interface-android-part-1-layouts