diff options
author | 2010-10-07 17:13:30 +0900 | |
---|---|---|
committer | 2010-10-07 23:51:38 +0900 | |
commit | d663555c9fe5b95caedbc25a74458b951128da80 (patch) | |
tree | 460c11b6fdb69e62e6b297ed117b989d2616d674 /java/res | |
parent | 4d9add5482ffb5f7d00fcc1c581074fd1bc0b7a4 (diff) | |
download | latinime-d663555c9fe5b95caedbc25a74458b951128da80.tar.gz latinime-d663555c9fe5b95caedbc25a74458b951128da80.tar.xz latinime-d663555c9fe5b95caedbc25a74458b951128da80.zip |
Keyboard XML file supports include and merge tag
Keyboard XML file can include other keyboard XML file using directive
<include keyboardLayout="@xml/...">. The keyboard XML file which is
included must have <merge> tag as root element.
Change-Id: I06c35fe7b3db5232acdb33f73a79f38d31261b32
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/values/attrs.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/res/values/attrs.xml b/java/res/values/attrs.xml index 19002140c..318286ea8 100644 --- a/java/res/values/attrs.xml +++ b/java/res/values/attrs.xml @@ -129,4 +129,8 @@ requested keyboard mode, the row will be skipped. --> <attr name="keyboardMode" format="reference" /> </declare-styleable> + + <declare-styleable name="BaseKeyboard_Include"> + <attr name="keyboardLayout" format="reference" /> + </declare-styleable> </resources> |