我将EditText添加到记事本应用程序的布局中。当我尝试在EditText中输入时,我意识到如果文本字符串比屏幕边缘长,它将继续直线过去而不是下一行。布局的代码如下。
<ScrollView
android:layout_height="match_parent"
android:layout_width="match_parent"
android:fillViewport="true"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/noteEditorLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/noteEditor"
android:layout_width="0dp"
android:layout_height="match_parent"
android:hint="@string/enterText"
android:textSize="18sp"
android:background="#00000000"
android:inputType="textMultiLine|textCapSentences"
android:gravity="top"
android:layout_weight="1">
</EditText>
</LinearLayout>
感谢。
答案 0 :(得分:0)
尝试设置
android:layout_width="0dp"
到
android:layout_width="match_parent"
代替
或者如果您坚持使用layout_weight
属性,请将此行添加到LinearLayout
android:weightSum="1"