Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的行动:
我点击 EditTextPreference
出现一个带有密码的窗口
一切正常,但可以看到之前输入的密码长度
如何隐藏密码的长度?
您可以将 EditText 的 TextColor 设置为白色。这样用户输入的任何内容都将不可见,您也可以使用这些隐藏光标
android:textColor="@color/white" or android:textColor="#FFFFFF" android:cursorVisible="false"