forked from extern/Unexpected-Keyboard
109 lines
3.2 KiB
XML
109 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:hardwareAccelerated="false">
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
<juloo.keyboard2.EmojiTypeButton
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@color/emoji_button_bg"
|
|
android:padding="0px"
|
|
android:text="\uD83D\uDE03"
|
|
emoji_type="EMOTICONS"
|
|
/>
|
|
<juloo.keyboard2.EmojiTypeButton
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@color/emoji_button_bg"
|
|
android:padding="0px"
|
|
android:text="\u2708"
|
|
emoji_type="DINGBATS"
|
|
/>
|
|
<juloo.keyboard2.EmojiTypeButton
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@color/emoji_button_bg"
|
|
android:padding="0px"
|
|
android:text="\uD83D\uDE8C"
|
|
emoji_type="TRANSPORT"
|
|
/>
|
|
<juloo.keyboard2.EmojiTypeButton
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@color/emoji_button_bg"
|
|
android:padding="0px"
|
|
android:text="\uD83C\uDF4C"
|
|
emoji_type="UNCATEGORIZED"
|
|
/>
|
|
<juloo.keyboard2.EmojiTypeButton
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@color/emoji_button_bg"
|
|
android:padding="0px"
|
|
android:text="\uD83C\uDD92"
|
|
emoji_type="ENCLOSED_CHARACTERS"
|
|
/>
|
|
</LinearLayout>
|
|
<juloo.keyboard2.EmojiGridView
|
|
android:id="@+id/emoji_grid"
|
|
android:background="@color/bg"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="@dimen/emoji_grid_height"
|
|
/>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
<juloo.keyboard2.EmojiKeyButton
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@color/emoji_key_bg"
|
|
android:textColor="@color/emoji_key_text"
|
|
android:textSize="@dimen/label_text_size"
|
|
android:padding="0px"
|
|
key="switch_back_emoji"
|
|
/>
|
|
<juloo.keyboard2.EmojiKeyButton
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="4"
|
|
android:background="@color/emoji_key_bg"
|
|
android:textColor="@color/emoji_key_text"
|
|
android:textSize="@dimen/label_text_size"
|
|
android:padding="0px"
|
|
key="space"
|
|
/>
|
|
<juloo.keyboard2.EmojiKeyButton
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@color/emoji_key_bg"
|
|
android:textColor="@color/emoji_key_text"
|
|
android:textSize="@dimen/label_text_size"
|
|
android:padding="0px"
|
|
key="backspace"
|
|
/>
|
|
<juloo.keyboard2.EmojiKeyButton
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@color/emoji_key_bg"
|
|
android:textColor="@color/emoji_key_text"
|
|
android:textSize="@dimen/label_text_size"
|
|
android:padding="0px"
|
|
key="enter"
|
|
/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|