aboutsummaryrefslogtreecommitdiffstats
path: root/libs/emojicon/src/main/res/layout/emojicons.xml
blob: f1e716242a14e339eac68a84592074e65add5fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="?emojicon_kbd_style"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/emojis_tab"
        style="?emojicon_tab_bar_style"
        android:layout_width="match_parent"
        android:layout_height="?emojicon_tab_bar_height"
        android:layout_alignParentTop="true"
        android:orientation="horizontal" />

    <android.support.v4.view.ViewPager
        android:id="@+id/emojis_pager"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_below="@id/emojis_tab" />

    <View
        style="?emojicon_divider_style"
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:layout_below="@id/emojis_tab" />

</RelativeLayout>