aboutsummaryrefslogtreecommitdiffstats
path: root/libs/emojicon/src/main/res/layout/emojicon_item.xml
blob: c5e765cb73f80691e3b13f6e1da5f6eb32cfa725 (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
<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    style="?emojicon_grid_item_style"
    android:layout_width="64dp"
    android:layout_height="64dp">

    <TextView
        android:id="@+id/emojiId"
        style="?emojicon_id_style"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        tools:text="A68" />

    <TextView
        android:id="@+id/emojiContainer"
        style="?emojicon_item_style"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:layout_gravity="center"
        tools:text=";)" />

</RelativeLayout>