Android密码切换想要设置文本而不是图像

时间:2017-05-25 14:25:37

标签: android android-textinputlayout

我使用TextInputEditText作为密码字段。我想使用支持库24.2.0提供的密码切换功能。 passwordToggleDrawable 允许我根据切换状态设置drawable进行更改。我想显示TextView而不是drawable来显示切换状态,即我想要显示文本' SHOW '允许密码可见并且隐藏'当用户想要隐藏密码时我可以看到属性' passwordToggleContentDescription '需要文字。我尝试将此属性设置为' @ null',但它不会显示文本。

以下是我正在尝试的代码,

<android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_marginBottom="5dp"
        android:layout_marginTop="16dp"
        app:passwordToggleEnabled="true"
        app:passwordToggleDrawable="@null"
        app:passwordToggleContentDescription="Test1">

        <android.support.design.widget.TextInputEditText
            android:layout_width="match_parent"
            android:layout_height="48dp"
            android:hint="Password"
            android:imeOptions="actionNext"
            android:inputType="textPassword"
            android:maxLength="75"
            android:textCursorDrawable="@null" />
    </android.support.design.widget.TextInputLayout>

1 个答案:

答案 0 :(得分:2)

我使用framelayout实现这一目标。我在TextInputEditText

之上显示TextView
Dim rs As DAO.Recordset
Set rs = CurrentDb.OpenRecordset("SELECT field FROM table WHERE somecriteria ORDER BY field;")
If rs.RecordCount > 0 Then
For x = 1 to 3
    blabla = rs!One_Sticker
    Debug.Print blabla
    rs.MoveNext
Next
End If

我正在处理TextView上的onclicks,如下所示,

<FrameLayout 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:id="@+id/content_main"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="allstate.com.testfab.MainActivity"
    tools:showIn="@layout/activity_main">

    <android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_marginBottom="5dp"
        android:layout_marginTop="16dp"
        app:passwordToggleEnabled="true"
        app:passwordToggleDrawable="@null"
        app:passwordToggleContentDescription="Test1">

        <android.support.design.widget.TextInputEditText
            android:id="@+id/edit_text"
            android:layout_width="match_parent"
            android:layout_height="48dp"
            android:hint="Password"
            android:imeOptions="actionNext"
            android:inputType="textPassword"
            android:maxLength="10"
            android:textCursorDrawable="@null" />
    </android.support.design.widget.TextInputLayout>

    <TextView
        android:id="@+id/toggle_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right|center_vertical"
        android:text="SHOW"
        android:layout_marginRight="16dp"
        android:paddingTop="10dp"
        />
</FrameLayout>

如果您找到比此更好的解决方案,请告诉我。