我試圖使用EditText
和textPassword
輸入類型。我面臨的情況是,在Android版本5和4.4中,所有進入該字段的字符都是通過雙擊來選擇的,而此功能在Android版本6上不起作用。 您是否願意幫助我在所有Android版本中擁有此功能?帶有文本密碼輸入類型的Android EditText不會通過雙擊選擇全部字符
這是我的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:hint="Text Password Input Type"
android:inputType="textPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
這是結果:
我想這個問題是隻用模擬器而不是真正的設備 – VVB
@VVB這個功能在Samsung Note 4上用Lollipop和Nexus 5與Marshmallow android版本進行了檢查。發生了同樣的結果。 – Nava