如何在登录屏幕上启用Samsung Pass支持

时间:2018-07-31 11:13:57

标签: android samsung-mobile samsung-knox

我的应用程序中有一个登录屏幕(带有用户名和密码)。我希望登录后,Samsung Pass要求存储凭据并在将来填充登录凭据。

它可以在twitter应用程序上运行,但不能在我的应用程序上运行吗?我当前的登录输入字段如下所示:

        <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.design.widget.TextInputEditText
                android:id="@+id/edit_text_login"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/transparent"
                android:hint="@string/login_hint"
                android:maxLines="1"
                android:autofillHints="username"
                android:singleLine="true" />

        </android.support.design.widget.TextInputLayout>

        <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:passwordToggleEnabled="true">

            <android.support.design.widget.TextInputEditText
                android:id="@+id/edit_text_password"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/transparent"
                android:hint="@string/password_hint"
                android:inputType="textPassword"
                android:autofillHints="password"
                android:singleLine="true"/>

        </android.support.design.widget.TextInputLayout>

登录时,没有显示来自Samsung Pass的提示,要求将凭据存储在Twitter应用程序中。任何人都知道我需要做什么或更改才能使Samsung Pass支持工作?

0 个答案:

没有答案