gpt4 book ai didi

android - 全屏 TextInputEditText 不显示计数器

转载 作者:行者123 更新时间:2023-12-02 16:41:31 25 4
gpt4 key购买 nike

我正在尝试适应 TextInputEditText到整个屏幕,但这并非没有问题:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation="vertical"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
tools:context=".MainActivity">

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:counterEnabled="true"
app:counterMaxLength="1000"
app:passwordToggleEnabled="false"
app:endIconMode="none">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_text"
android:hint="Type here..."
android:layout_width="match_parent"
android:layout_height="match_parent"
android:maxLength="1000"
android:gravity="top"/>

</com.google.android.material.textfield.TextInputLayout>

</LinearLayout>

输入类型:

TextInputEditText tv = findViewById( R.id.edit_text );
tv.setInputType( InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE );

结果是计数器消失了,中间出现提示。如果我更改为换行内容,它就会恢复正常行为。示例:

enter image description here

所以基本上我会满足于只显示计数器,将提示对齐到顶部是次要的。

最佳答案

只需尝试权重而不是 match_parent。 android:layout_weight="1"计数器将可见。

当我们点击 EditText 或 EditText 处于焦点时,提示对齐是可以的。由于EditText处于全屏请求焦点将解决提示对齐问题。

 TextInputEditText tv = findViewById( R.id.edit_text );
tv.setInputType( InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE );
tv.requestFocus();

您的布局将如下所示`

<LinearLayout
android:orientation="vertical"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
>

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:counterEnabled="true"
app:counterMaxLength="1000"
app:counterTextColor="@color/black"
app:passwordToggleEnabled="false"
app:endIconMode="none">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_text"
android:hint="Type here..."
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:maxLength="1000"
android:gravity="top"/>

</com.google.android.material.textfield.TextInputLayout>

</LinearLayout>`

关于android - 全屏 TextInputEditText 不显示计数器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60055240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com