From edf720c58ce9de56e8db23c398ae1ab73453a10c Mon Sep 17 00:00:00 2001 From: Eric House Date: Wed, 9 Apr 2014 07:28:31 -0700 Subject: [PATCH] add EditText's hint. But Spinner's prompt MUST be a reference -- fuck you Android -- so I need another way to do this --- xwords4/android/scripts/mk_xml.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xwords4/android/scripts/mk_xml.py b/xwords4/android/scripts/mk_xml.py index 689857bb0..efbe65844 100755 --- a/xwords4/android/scripts/mk_xml.py +++ b/xwords4/android/scripts/mk_xml.py @@ -19,6 +19,9 @@ g_xmlTypes = [ { 'elemName': 'CheckBox', 'attrType' : '{http://schemas.android.com/apk/res/android}text' }, + { 'elemName': 'EditText', + 'attrType' : '{http://schemas.android.com/apk/res/android}hint' + }, ]