我想問一個簡單的問題,在xml佈局文件中,對於android:password =「false」,等效的android代碼是什麼。 (我GOOGLE了它,但無法找到的結果:))代碼相當於android:password =「false」
謝謝
我想問一個簡單的問題,在xml佈局文件中,對於android:password =「false」,等效的android代碼是什麼。 (我GOOGLE了它,但無法找到的結果:))代碼相當於android:password =「false」
謝謝
相當於android:password="false"
是TextView.setTransformation(null)
。與PasswordTransformationMethod
一起使用相當於android:password="true"
你是什麼意思等價的android代碼?如果您Editview
字段是密碼字段,設置android:password="true"
,如果不是,您沒有設置任何爲android:password屬性
設置'android:password =「true」'假設有一個佈局文件。如果UI是基於用戶輸入或外部數據在運行時生成的,則可能不是這種情況。 – 2011-05-24 16:33:48
明白了。感謝Franci。 – yogsma 2011-05-24 16:34:52
文件說,在您的TextView使用
setTransformationMethod(TransformationMethod method)
。可能更容易use this:
setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD)
我假設他想重寫在XML中設置的android:password =「true」。所以它會是TextView.setTransformation(null); – slund 2011-05-24 16:33:55
感謝Fracci,但該代碼是android:password =「true」:) – 2011-05-24 16:36:22
對,它工作。 TextView.setTransformation(NULL); – 2011-05-24 16:38:41