mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-11 18:29:05 +01:00
Add functionality to save and restore recently used Emojis Update emoji and add new categories based on AOSP's XML file
19 lines
560 B
XML
19 lines
560 B
XML
<?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"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="match_parent"
|
|
android:columnWidth="@dimen/emoji_drawer_size"
|
|
android:gravity="center"
|
|
android:horizontalSpacing="0dp"
|
|
android:numColumns="auto_fit"
|
|
android:stretchMode="columnWidth"
|
|
android:verticalSpacing="0dp"
|
|
android:visibility="visible"/>
|
|
|
|
</FrameLayout> |