aboutsummaryrefslogtreecommitdiffstats
path: root/java/res/layout
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-07-04 15:29:10 +0900
committerTadashi G. Takaoka <takaoka@google.com>2014-07-09 23:43:45 +0900
commit46394af7b93dc1f9623de255e17e4dd41cf7667a (patch)
treef25114067b52d0465339fc2d141328044a09c676 /java/res/layout
parentba1cd8a44a7911fcd685afc8bb0263ef44bce8f3 (diff)
downloadlatinime-46394af7b93dc1f9623de255e17e4dd41cf7667a.tar.gz
latinime-46394af7b93dc1f9623de255e17e4dd41cf7667a.tar.xz
latinime-46394af7b93dc1f9623de255e17e4dd41cf7667a.zip
Update Material Dark theme
Bug: 15782668 Change-Id: If3f2439fe9dcd2c05514e73861777337b42273c4
Diffstat (limited to 'java/res/layout')
-rw-r--r--java/res/layout/emoji_palettes_view.xml6
-rw-r--r--java/res/layout/suggestion_divider.xml4
2 files changed, 4 insertions, 6 deletions
diff --git a/java/res/layout/emoji_palettes_view.xml b/java/res/layout/emoji_palettes_view.xml
index 9ff090aad..a6ea38ba4 100644
--- a/java/res/layout/emoji_palettes_view.xml
+++ b/java/res/layout/emoji_palettes_view.xml
@@ -30,6 +30,7 @@
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="@dimen/config_suggestions_strip_height"
+ style="?attr/suggestionStripViewStyle"
>
<TabHost
android:id="@+id/emoji_category_tabhost"
@@ -57,10 +58,7 @@
android:visibility="gone" />
</FrameLayout>
</TabHost>
- <View
- android:layout_width="2dip"
- android:layout_height="match_parent"
- android:background="@drawable/suggestions_strip_divider" />
+ <include layout="@layout/suggestion_divider" />
<!-- TODO: Implement KeyView and replace this. -->
<!-- Provide audio and haptic feedback by ourselves based on the keyboard settings.
We just need to ignore the system's audio and haptic feedback settings. -->
diff --git a/java/res/layout/suggestion_divider.xml b/java/res/layout/suggestion_divider.xml
index 563599d82..dfea017e6 100644
--- a/java/res/layout/suggestion_divider.xml
+++ b/java/res/layout/suggestion_divider.xml
@@ -26,9 +26,9 @@
android:layout_height="match_parent"
android:padding="0dp"
android:gravity="center"
- android:src="@drawable/suggestions_strip_divider"
android:contentDescription="@null"
android:clickable="false"
android:longClickable="false"
android:hapticFeedbackEnabled="false"
- android:soundEffectsEnabled="false" />
+ android:soundEffectsEnabled="false"
+ style="?attr/suggestionStripViewStyle" />