diff options
author | 2014-08-10 11:11:46 +0900 | |
---|---|---|
committer | 2014-08-10 11:21:14 +0900 | |
commit | 31869bf5ad987f42530474d3e82b6f75a2c6de68 (patch) | |
tree | e756ad2d01375d045a1cc09555dd98255150e0b2 /java/res/layout | |
parent | f729f2214f1479904e2e190fc08f3d807f747eb6 (diff) | |
download | latinime-31869bf5ad987f42530474d3e82b6f75a2c6de68.tar.gz latinime-31869bf5ad987f42530474d3e82b6f75a2c6de68.tar.xz latinime-31869bf5ad987f42530474d3e82b6f75a2c6de68.zip |
A follow up to AAPT change
AAPT previously allowed apps to generate resources in the android
package. This is no longer allowed after I1be66e3f8df9a737b21c71f8a93685376c7e6780.
Change-Id: Icda68829c0bf9254b6637f0ec2cecc0b357dbc43
Diffstat (limited to 'java/res/layout')
-rw-r--r-- | java/res/layout/user_dictionary_item.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/res/layout/user_dictionary_item.xml b/java/res/layout/user_dictionary_item.xml index b8d48b56d..fe7d47ec2 100644 --- a/java/res/layout/user_dictionary_item.xml +++ b/java/res/layout/user_dictionary_item.xml @@ -29,7 +29,7 @@ android:layout_weight="1" > <TextView - android:id="@+android:id/text1" + android:id="@android:id/text1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:ellipsize="marquee" @@ -38,7 +38,7 @@ android:textAppearance="?android:attr/textAppearanceMedium" /> <TextView - android:id="@+android:id/text2" + android:id="@android:id/text2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignStart="@android:id/text1" |