Unexpected-Keyboard/res/layout/emoji_pane.xml

39 lines
1.1 KiB
XML
Raw Normal View History

2015-10-23 14:22:43 +02:00
<?xml version="1.0" encoding="utf-8"?>
2015-10-24 16:32:49 +02:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
2015-10-23 14:22:43 +02:00
android:hardwareAccelerated="false">
<juloo.keyboard2.EmojiGroupButtonsBar
2015-10-24 16:32:49 +02:00
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
2015-10-23 14:22:43 +02:00
<juloo.keyboard2.EmojiGridView
2015-10-24 16:32:49 +02:00
android:id="@+id/emoji_grid"
2015-10-23 14:22:43 +02:00
android:background="@color/bg"
2015-10-24 16:32:49 +02:00
android:layout_width="fill_parent"
android:layout_height="@dimen/emoji_grid_height"
2015-10-23 14:22:43 +02:00
/>
2015-10-24 16:32:49 +02:00
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<juloo.keyboard2.EmojiKeyButton
2015-10-27 15:05:50 +01:00
style="@style/emojiKeyButton"
2015-10-24 16:32:49 +02:00
key="switch_back_emoji"
/>
<juloo.keyboard2.EmojiKeyButton
2015-10-27 15:05:50 +01:00
style="@style/emojiKeyButton"
2015-10-24 16:32:49 +02:00
android:layout_weight="4"
key="space"
/>
<juloo.keyboard2.EmojiKeyButton
2015-10-27 15:05:50 +01:00
style="@style/emojiKeyButton"
2015-10-24 16:32:49 +02:00
key="backspace"
/>
<juloo.keyboard2.EmojiKeyButton
2015-10-27 15:05:50 +01:00
style="@style/emojiKeyButton"
2015-10-24 16:32:49 +02:00
key="enter"
/>
</LinearLayout>
</LinearLayout>