mea*_*ars 5 android multiline android-edittext textinputlayout
无论我做什么,我都无法EditText在内部制作多行TextInputLayout(必须InputLayout为字符计数器添加)。所以当我输入一些东西时,它会水平移动,而不是在一段时间后转到新的一行。如您所知,在 normal EditTexts 中, multiline 可以解决问题,但在这种情况下则不然。你怎么认为?谢谢你。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.v7.widget.CardView
android:id="@+id/cardView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="40dp"
android:layout_weight="1"
app:layout_constraintBottom_toTopOf="@+id/adViewNewEntry"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.134">
<android.support.design.widget.TextInputLayout
android:id="@+id/textContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:padding="28dp"
app:counterEnabled="true"
app:counterMaxLength="280"
app:layout_constraintBottom_toTopOf="@+id/save_button"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0">
<android.support.design.widget.TextInputEditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:background="@android:color/transparent"
android:gravity="top|left"
android:inputType="textNoSuggestions|textMultiLine"
android:maxLines="10"
android:scrollbars="vertical"
/>
</android.support.design.widget.TextInputLayout>
</android.support.v7.widget.CardView>
<Button
android:id="@+id/save_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="15dp"
android:layout_marginStart="256dp"
android:layout_marginTop="8dp"
android:layout_weight="1"
android:onClick="saveToDatabase"
android:text="SAVE"
app:layout_constraintBottom_toTopOf="@+id/adViewNewEntry"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.75"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/cardView"
app:layout_constraintVertical_bias="0.0" />
<com.google.android.gms.ads.AdView
android:id="@+id/adViewNewEntry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:adSize="BANNER"
app:adUnitId="ca-app-pub-xxx/xxx"
app:layout_anchor="@+id/include"
app:layout_anchorGravity="bottom|center"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"></com.google.android.gms.ads.AdView>
</android.support.constraint.ConstraintLayout>
Run Code Online (Sandbox Code Playgroud)
Jos*_*ose 11
这也有效:
android:inputType="textPersonName | textMultiLine"
Run Code Online (Sandbox Code Playgroud)
mea*_*ars 10
我做到了。您必须edittext.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE);为相关的 EditText添加“以编程方式” 。
在我的情况下有趣的是,当您将多行代码添加到 xml multiline 时,多行不起作用(使用 TextInputLayout)但它以这种方式工作。希望它对我们中的一些人有帮助。
| 归档时间: |
|
| 查看次数: |
4818 次 |
| 最近记录: |