目前我正在使用登录表单,这是输出。
这是xml代码
<?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"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/activity_vertical_margin"
app:hintEnabled="false"
app:passwordToggleContentDescription="description"
app:passwordToggleEnabled="true">
<android.support.design.widget.TextInputEditText
android:id="@+id/edt_password"
android:layout_width="match_parent"
android:layout_height="@dimen/password_edit_text_height"
android:background="@drawable/custom_border_statup_edittext"
android:gravity="center"
android:hint="@string/hint_password"
android:inputType="textPassword" />
</android.support.design.widget.TextInputLayout>
</LinearLayout>
但我想要电子邮件和密码提示重力的精确中心。没有切换它显示中心,但切换它不显示中心。有没有办法做到这一点?