|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
|
* This is the for follow notifications, the layout for the follows/following listings on account
|
|
|
|
* pages are instead in item_account.xml.
|
|
|
|
-->
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingLeft="14dp"
|
|
|
|
android:paddingRight="14dp">
|
|
|
|
|
|
|
|
<androidx.emoji.widget.EmojiTextView
|
|
|
|
android:id="@+id/notification_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:drawablePadding="10dp"
|
|
|
|
android:drawableStart="@drawable/ic_person_add_24dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingStart="28dp"
|
|
|
|
android:textColor="?android:textColorTertiary"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
|
|
|
tools:text="Someone followed you" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/notification_avatar"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_below="@+id/notification_text"
|
|
|
|
android:layout_marginEnd="14dp"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:contentDescription="@string/action_view_profile"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
android:textSize="?attr/status_text_medium" />
|
|
|
|
|
|
|
|
<androidx.emoji.widget.EmojiTextView
|
|
|
|
android:id="@+id/notification_display_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/notification_text"
|
|
|
|
android:layout_toEndOf="@id/notification_avatar"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
|
|
|
android:textStyle="normal|bold"
|
|
|
|
tools:text="Test User" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/notification_username"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/notification_display_name"
|
|
|
|
android:layout_toEndOf="@id/notification_avatar"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textColor="?android:textColorSecondary"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
|
|
|
tools:text="\@testuser" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|