diff options
author | 2014-01-28 16:19:29 +0900 | |
---|---|---|
committer | 2014-01-31 20:07:27 +0900 | |
commit | 8a296e43c903a3377f28943ba4a59082ae7fe60a (patch) | |
tree | ed719831406b7e86071b6f235ac81cbddc1f9697 /java/res/layout | |
parent | be0d05c5efcaaf69e02e82f886ec2afd871883b0 (diff) | |
download | latinime-8a296e43c903a3377f28943ba4a59082ae7fe60a.tar.gz latinime-8a296e43c903a3377f28943ba4a59082ae7fe60a.tar.xz latinime-8a296e43c903a3377f28943ba4a59082ae7fe60a.zip |
Add important notice strip
This change is a groundwork to show important notice.
Bug: 10587358
Change-Id: I80aa70d30e2a529b37798f0df2183b41df3ac38a
Diffstat (limited to 'java/res/layout')
-rw-r--r-- | java/res/layout/suggestions_strip.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/java/res/layout/suggestions_strip.xml b/java/res/layout/suggestions_strip.xml index 9c83542a6..9ffd231de 100644 --- a/java/res/layout/suggestions_strip.xml +++ b/java/res/layout/suggestions_strip.xml @@ -45,4 +45,17 @@ android:textAlignment="viewStart" style="?attr/suggestionWordStyle" /> </LinearLayout> + <LinearLayout + android:id="@+id/important_notice_strip" + android:orientation="horizontal" + android:layout_width="match_parent" + android:layout_height="match_parent"> + <TextView + android:id="@+id/important_notice_title" + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="1.0" + android:textSize="14sp" + style="?attr/suggestionWordStyle" /> + </LinearLayout> </merge> |