2018-05-10 19:16:56 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-06-26 00:23:43 +10:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-05-10 19:16:56 +10:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-06-26 00:23:43 +10:00
|
|
|
android:paddingTop="16dp">
|
2018-05-10 19:16:56 +10:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/emoji_font_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-12 02:59:01 +11:00
|
|
|
android:orientation="vertical"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2018-06-26 00:23:43 +10:00
|
|
|
|
2018-05-10 19:16:56 +10:00
|
|
|
<include
|
|
|
|
android:id="@+id/item_blobmoji"
|
|
|
|
layout="@layout/item_emoji_pref" />
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/item_twemoji"
|
2018-06-26 00:23:43 +10:00
|
|
|
layout="@layout/item_emoji_pref" />
|
|
|
|
|
2019-06-07 05:51:56 +10:00
|
|
|
<include
|
|
|
|
android:id="@+id/item_notoemoji"
|
|
|
|
layout="@layout/item_emoji_pref" />
|
|
|
|
|
2018-05-10 19:16:56 +10:00
|
|
|
<include
|
|
|
|
android:id="@+id/item_nomoji"
|
|
|
|
layout="@layout/item_emoji_pref" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/emoji_download_label"
|
2018-06-26 00:23:43 +10:00
|
|
|
android:layout_width="wrap_content"
|
2018-05-10 19:16:56 +10:00
|
|
|
android:layout_height="wrap_content"
|
2018-06-26 00:23:43 +10:00
|
|
|
android:lineSpacingMultiplier="1.1"
|
2018-05-10 19:16:56 +10:00
|
|
|
android:paddingStart="24dp"
|
2018-06-26 00:23:43 +10:00
|
|
|
android:paddingTop="16dp"
|
2019-02-12 02:59:01 +11:00
|
|
|
android:paddingEnd="24dp"
|
|
|
|
android:paddingBottom="8dp"
|
2018-05-10 19:16:56 +10:00
|
|
|
android:text="@string/download_fonts"
|
2018-06-26 00:23:43 +10:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-02-12 02:59:01 +11:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2018-06-26 00:23:43 +10:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/emoji_font_list" />
|
2018-05-10 19:16:56 +10:00
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|