* Update to Emoji2 * Hopefully fix the emoji picker preference * Switch to released Filemojicompat version * Filemojicompat version as an own var * Remove an unused import * Small cleanup * Correct onDisplayPreferenceDialog; test TuskyApplication * Use TextViews instead of EmojiTextViews * Recreate the Main Activity if the emoji pack is updated * Enable coreLibraryDesugaring (for Java Streams); update Filemojicompat, downgrade Emoji2 * Update emoji font versions to 14 * Use FilemojiCompat 3.2.0-beta01 * Make ktLint happy again * Remove coreLibraryDesugaring and a FIXME * Use EmojiPickerPreference.get() * Disable emoji pack import * Update FilemojiCompat to Beta 2 * Update FilemojiCompat to Beta 3 * Update FilemojiCompat to Beta 3.2.0 final * Update FilemojiCompat to 3.2.1
74 lines
No EOL
3.1 KiB
XML
74 lines
No EOL
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="14dp"
|
|
android:paddingRight="14dp"
|
|
android:paddingBottom="10dp">
|
|
|
|
<TextView
|
|
android:id="@+id/notification_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:drawableStart="@drawable/ic_person_add_24dp"
|
|
android:drawablePadding="10dp"
|
|
android:ellipsize="end"
|
|
android:gravity="center_vertical"
|
|
android:maxLines="1"
|
|
android:paddingStart="28dp"
|
|
android:textColor="?android:textColorTertiary"
|
|
android:textSize="?attr/status_text_medium"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:text="Someone followed you" />
|
|
|
|
<ImageView
|
|
android:id="@+id/notification_avatar"
|
|
android:layout_width="42dp"
|
|
android:layout_height="42dp"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_marginStart="6dp"
|
|
android:layout_marginTop="6dp"
|
|
android:contentDescription="@string/action_view_profile"
|
|
android:scaleType="centerCrop"
|
|
android:textSize="?attr/status_text_medium"
|
|
app:layout_constraintBottom_toBottomOf="@id/notification_username"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="@id/notification_display_name"
|
|
tools:src="@drawable/avatar_default" />
|
|
|
|
<TextView
|
|
android:id="@+id/notification_display_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="14dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="?attr/status_text_medium"
|
|
android:textStyle="normal|bold"
|
|
app:layout_constraintBottom_toTopOf="@id/notification_username"
|
|
app:layout_constraintStart_toEndOf="@id/notification_avatar"
|
|
app:layout_constraintTop_toBottomOf="@id/notification_text"
|
|
app:layout_constraintVertical_chainStyle="packed"
|
|
tools:text="Test User" />
|
|
|
|
<TextView
|
|
android:id="@+id/notification_username"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="14dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="?attr/status_text_medium"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toEndOf="@id/notification_avatar"
|
|
app:layout_constraintTop_toBottomOf="@id/notification_display_name"
|
|
tools:text="\@testuser" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |