我有一个EditText来输入密码,我将inputType设置为“textPassword”。但是当我在应用程序或模拟器中运行它时,密码是可见的。为什么它显示密码而不是点?
<EditText
android:id="@+id/etPassword"
android:layout_width="match_parent"
android:inputType="textPassword"
android:layout_height="wrap_content"
android:hint="@string/Password"
android:layout_marginBottom="10dp"
android:maxLength="15"
android:background="@drawable/ss"/>
可绘制文件ss:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<corners android:radius="10dp"/>
<padding android:left="10dp" android:right="10dp" android:top="10dp" android:bottom="10dp"/>
<solid android:color="#ffffffff"/>
<stroke android:width="1dp" android:color="#CCCCCC" />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:padding="10dp"
android:orientation="vertical"
android:layout_height="match_parent"
android:background="#ffffffff"
android:gravity="center_vertical" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/foodstall"
android:layout_gravity="center"
android:layout_marginBottom="10dp"/>
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content"
android:background="#ffffffff">
<EditText
android:id="@+id/etUsername"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/Username"
android:maxLength="15"
android:background="@drawable/ss"
android:layout_marginBottom="10dp"/>
<EditText
android:id="@+id/etPassword"
android:layout_width="match_parent"
android:inputType="textPassword"
android:layout_height="wrap_content" android:hint="@string/Password"
android:layout_marginBottom="10dp"
android:maxLength="15"
android:background="@drawable/ss"
android:text="askdjhkashdjasdksakdkaskdhkashkdhkashdkjhakshdkjhaskhdkj"/>
<Button
android:id="@+id/bLogin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/title_activity_login"
android:background="@color/button"
android:textColor="#ffffffff"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/linearlayout"
android:background="@drawable/ss"
android:layout_marginTop="10dp">
<TextView
android:id="@+id/tvRegisterLink"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/Newuser"
android:gravity="center"
android:layout_weight="1"
android:textStyle="bold"/>
<TextView
android:id="@+id/fpass"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/title_activity_forgotpass"
android:layout_weight="1"
android:gravity="center"
android:textStyle="bold"/>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:3)
1)删除android:inputType =&#34; textPassword&#34;从你的xml文件,而不是在java中设置它:
EditText password = (EditText) findViewById(R.id.password_text);
password.setTransformationMethod(new PasswordTransformationMethod());
使用这种方法,提示字体看起来不错,但是当您在该编辑字段中输入内容时,在转换为密码点之前,您不会以纯文本格式查看每个字符。此外,在全屏输入时,不会出现点,而是以明文形式显示密码。
2)离开android:inputType =&#34; textPassword&#34;在你的xml中。在Java中,passwordMethod:
EditText password = (EditText) findViewById(R.id.register_password_text);
password.setTransformationMethod(new PasswordTransformationMethod());
这种方法给出了密码点。
答案 1 :(得分:2)
尝试添加android:password =&#34; true&#34;在EditText中。它应该工作。
<EditText
android:id="@+id/etPassword"
android:layout_width="match_parent"
android:inputType="textPassword"
android:password="true"
android:layout_height="wrap_content"
android:hint="@string/Password"
android:layout_marginBottom="10dp"
android:maxLength="15"
android:background="@drawable/ss"/>
答案 2 :(得分:0)
我也遇到过这个问题,对我有用的是:
我将这个xml属性添加到我的EditText中,它运行正常:
android:singleLine="true"
我知道它已被弃用,但android:maxLines="1"
虽然取代了singleLine,却无法正常工作。
答案 3 :(得分:0)
我测试过这个工作正常
<EditText
android:id="@+id/etPassword"
android:layout_width="match_parent"
android:inputType="textWebPassword"
android:layout_height="40dp"
android:hint="Password"
android:layout_marginBottom="10dp"
android:maxLength="15" />
从
更改inputTypeandroid:inputType="textPassword"
到
android:inputType="textWebPassword"