Android:在TextInputLayout的EditText右侧显示TextView [英] Android: Display TextView in the right-side of EditText which is in the TextInputLayout

查看:154
本文介绍了Android:在TextInputLayout的EditText右侧显示TextView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正尝试创建如下图所示的布局

I am trying to create a layout like in the picture below

在上图中,密码字段位于TextInputLayout中,并且右侧还有一个TextView,它指向忘记密码"活动.

In the above picture the password field is in the TextInputLayout and it also have a TextView in the right side , which points to the Forget Password Activity.

我使用相对布局在不使用TextInpt布局的情况下使用Textview实现EditText

I achive EditText with Textview without TextInpt layout like below using relative layout

XML布局:

        <EditText
            android:id="@+id/email_address"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:drawableLeft="@drawable/ic_email"
            android:drawableStart="@drawable/ic_email"
            android:drawablePadding="10dp"
            android:hint="@string/email_address"
            android:textSize="14sp"
            android:maxLines="1"
            android:inputType="textEmailAddress" />



        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

        <EditText
            android:id="@+id/etxt_password_login"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:drawableLeft="@drawable/ic_password"
            android:drawableStart="@drawable/ic_password"
            android:drawablePadding="10dp"
            android:textSize="14sp"
            android:hint="Password"
            android:layout_alignParentLeft="true"
            android:inputType="textPassword"
            android:maxLines="1"/>

            <TextView
                android:id="@+id/txt_forget_password"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:text="forget ?"
                android:textSize="12sp"
                android:layout_marginRight="10dp"
                android:textColor="#808080"
                />

        </RelativeLayout>

但是,如果我在EditText中添加TextInputLayout,则无法实现.

But If I add TextInputLayout in the EditText I can't achieve it.

我如何解决此问题?

推荐答案

像这样尝试-用相对或线性布局环绕以获取类似的输出

Try Like this - Surround with Relative or Linear Layout to get the output like that

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="Password"/>

        </android.support.design.widget.TextInputLayout>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:text="Forgot Password ?"/>
    </RelativeLayout>

注意:为编辑文本设置一些填充权以对齐

Note : Set some padding right for edit text for alignment

如果键入完整的edittext,则字符的textview会覆盖.

If you type full edittext , the textview overlay for your character .

这篇关于Android:在TextInputLayout的EditText右侧显示TextView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆