mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
2faf7a640f
* add button to select any reaction * add emojipicker to build.gradle and manifest * fix build error * open reaction picker and send any reaction * use RelativeLayout as parent for EmojiPickerView * dismiss AlertDialog on emoji-selection * reduce columns to 8 like on iOS * disable "more reactions" button in android < 5 * show selected reactions instead of '...', this is what whatsapp, signal are doing * make '...' a bit less bold in light mode --------- Co-authored-by: adbenitez <asieldbenitez@gmail.com>
15 lines
522 B
XML
15 lines
522 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.emoji2.emojipicker.EmojiPickerView
|
|
android:id="@+id/emoji_picker"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:emojiGridColumns="8"/>
|
|
</RelativeLayout>
|