如何在editText的两侧显示提示文本?

时间:2018-10-15 07:24:20

标签: android android-layout android-edittext

enter image description here

您可以看到EditText的两端都有'email'和'example@abc.com'。首先,我想使用提示来解决它,如下所示:

     android:hint=" email           example@abc.com"   

但是我认为这是一个不好的方法。有什么好的方法可以解决这个问题。

1 个答案:

答案 0 :(得分:0)

  

如何在editText的两侧显示提示文本?

AFAIK (不是editText的内置行为),您可以使用单个editText

来获得所需的输出
  

解决方案

LinearLayout并将EditTextTextView包裹在LinearLayout

示例代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
    tools:context=".MainActivity">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="2dp"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Email" />

        <EditText
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:gravity="end"
            android:text="nilesh@mail.com" />

    </LinearLayout>
</LinearLayout>

输出

enter image description here