2013-06-28 03:57:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<GridView android:id="@+id/emoji"
|
2014-05-29 03:53:34 +00:00
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp"
|
2013-06-28 03:57:27 +00:00
|
|
|
android:visibility="visible"
|
|
|
|
android:layout_width="fill_parent"
|
2014-07-30 22:48:39 +00:00
|
|
|
android:layout_height="match_parent"
|
2013-06-28 03:57:27 +00:00
|
|
|
android:stretchMode="columnWidth"
|
2014-05-29 03:53:34 +00:00
|
|
|
android:columnWidth="@dimen/emoji_drawer_size"
|
|
|
|
android:horizontalSpacing="0dp"
|
|
|
|
android:verticalSpacing="0dp"
|
2013-06-28 03:57:27 +00:00
|
|
|
android:numColumns="auto_fit"
|
|
|
|
android:gravity="center"/>
|
|
|
|
|
|
|
|
</FrameLayout>
|