gpt4 book ai didi

android - 如何在android中的TextInputLayout中对齐文本?

转载 作者:行者123 更新时间:2023-12-05 00:19:18 25 4
gpt4 key购买 nike

RelativeLayout 中,我有一个 TextInputLayout,其中有 EditText 用于输入电话号码和 Textview > 在 LinearLayout 中,我在其中显示国家/地区代码。当我们开始输入“TextInputLayout 滑动到顶部,但我希望它滑动到如图 3 所示的位置。

我遇到了这个问题,有人可以帮助我吗?这是我的代码:

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignStart="@+id/error_mobile_no"
android:layout_alignTop="@+id/error_mobile_no"
android:layout_alignBottom="@+id/error_mobile_no"
android:layout_marginTop="0dp"
android:layout_marginBottom="0dp"
android:gravity="center"
android:orientation="horizontal">

<TextView
android:id="@+id/country_code_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/lorin_regular"
android:text="+971"
android:layout_marginBottom="2dp"
android:textColor="@color/black"
android:textSize="14sp" />
</LinearLayout>

<com.google.android.material.textfield.TextInputLayout
android:id="@+id/error_mobile_no"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="20dp"
android:layout_marginStart="20dp"
app:errorEnabled="true">

<EditText
android:id="@+id/etPhoneNumberDetailedActivity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="start"
android:autofillHints=""
android:paddingStart="35dp"
android:backgroundTint="#6283a3"
android:fontFamily="@font/lorin_regular"
android:hint="@string/mobile_number"
android:inputType="phone"
android:textColor="@color/black"
android:textColorHint="#6283a3" android:textSize="14sp" />
</com.google.android.material.textfield.TextInputLayout>
</RelativeLayout>

这是输入文本之前的字段图像。 enter image description here

这是输入文字后的图像。 enter image description here

但我正在努力让它看起来像这样。 enter image description here

最佳答案

您可以使用app:prefixText来显示前缀:

    <com.google.android.material.textfield.TextInputLayout
android:hint="mobile_number"
app:prefixText="+971"
...>

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:autofillHints=""
android:inputType="phone"
.../>

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

enter image description here

关于android - 如何在android中的TextInputLayout中对齐文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63363452/

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