Ich habe versucht, mein EditText-Feld zum Zeilenumbruch zu bringen, kann es aber anscheinend nicht.
Ich habe mich bei der Entwicklung von Android-Anwendungen mit viel komplizierteren Problemen befasst, und dies scheint ein unkomplizierter Prozess zu sein.
Das Problem bleibt jedoch bestehen, und ich habe ein großes Textfeld, in das ich nur Text in einer Zeile eingeben kann. Fahren Sie geradeaus fort und scrollen Sie horizontal, wenn Sie Text eingeben.
Hier ist der XML-Code für das EditText-Objekt aus meiner Layoutdatei.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/myWidget48"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<ScrollView
android:id="@+id/myScrollView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
>
<LinearLayout
android:id="@+id/widget37"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<EditText
android:id="@+id/txtNotes"
android:layout_width="300px"
android:layout_height="120px"
android:scrollbars="vertical"
android:textSize="18sp"
android:gravity="left"
android:layout_marginTop="10dip"
android:inputType="textCapSentences"
>
</EditText>
</LinearLayout>
</ScrollView>
</LinearLayout>