2018-02-04 08:45:14 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--This applies only to favourite and rebnotificationsEnabledions.-->
|
2017-07-14 15:06:32 +10:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-10-18 09:20:26 +11:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/notification_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:paddingLeft="14dp"
|
|
|
|
android:paddingRight="14dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/notification_top_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
2018-03-02 07:10:10 +11:00
|
|
|
android:layout_marginBottom="6dp"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:drawablePadding="10dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingStart="28dp"
|
|
|
|
android:textColor="?android:textColorSecondary"
|
2017-12-02 07:52:10 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-12-01 06:12:09 +11:00
|
|
|
tools:text="Someone favourited your status" />
|
2017-01-23 16:19:30 +11:00
|
|
|
|
|
|
|
<RelativeLayout
|
2017-12-01 06:12:09 +11:00
|
|
|
android:id="@+id/status_name_bar"
|
2017-02-13 16:18:17 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-01-23 16:19:30 +11:00
|
|
|
android:layout_height="wrap_content"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:layout_below="@+id/notification_top_text"
|
|
|
|
android:layout_toEndOf="@+id/notification_status_avatar"
|
2018-03-02 07:10:10 +11:00
|
|
|
android:paddingBottom="4dp">
|
2017-01-23 16:19:30 +11:00
|
|
|
|
2017-12-01 06:12:09 +11:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/status_display_name"
|
2017-01-23 16:19:30 +11:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2018-02-17 08:12:56 +11:00
|
|
|
android:paddingEnd="@dimen/status_display_name_padding_end"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:paddingStart="0dp"
|
|
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Small"
|
|
|
|
android:textColor="?android:textColorTertiary"
|
2017-12-02 07:52:10 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:textStyle="normal|bold"
|
|
|
|
tools:text="Ente" />
|
2017-01-23 16:19:30 +11:00
|
|
|
|
2017-02-13 16:18:17 +11:00
|
|
|
<TextView
|
2017-12-01 06:12:09 +11:00
|
|
|
android:id="@+id/status_username"
|
2017-02-13 16:18:17 +11:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:layout_toEndOf="@id/status_display_name"
|
|
|
|
android:layout_toStartOf="@+id/status_timestamp_info"
|
2017-03-08 06:42:01 +11:00
|
|
|
android:ellipsize="end"
|
2017-07-14 15:06:32 +10:00
|
|
|
android:maxLines="1"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:textColor="?android:textColorTertiary"
|
2017-12-02 07:52:10 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-12-01 06:12:09 +11:00
|
|
|
tools:text="\@Entenhausen" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/status_timestamp_info"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_marginStart="4dp"
|
|
|
|
android:textColor="?android:textColorTertiary"
|
2017-12-02 07:52:10 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-12-01 06:12:09 +11:00
|
|
|
tools:text="13:37" />
|
2017-01-23 16:19:30 +11:00
|
|
|
|
2017-02-13 16:18:17 +11:00
|
|
|
</RelativeLayout>
|
2017-01-23 16:19:30 +11:00
|
|
|
|
2018-03-16 05:15:12 +11:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/notification_content_warning_description"
|
2017-11-08 07:31:44 +11:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-03-16 05:15:12 +11:00
|
|
|
android:layout_below="@id/status_name_bar"
|
|
|
|
android:layout_toEndOf="@id/notification_status_avatar"
|
|
|
|
android:lineSpacingMultiplier="1.1"
|
|
|
|
android:textColor="?android:textColorTertiary"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
|
|
|
tools:text="Example CW text" />
|
2017-11-08 07:31:44 +11:00
|
|
|
|
2017-12-02 07:52:10 +11:00
|
|
|
|
2018-03-16 05:15:12 +11:00
|
|
|
<ToggleButton
|
|
|
|
android:id="@+id/notification_content_warning_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/notification_content_warning_description"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:background="?attr/content_warning_button"
|
|
|
|
android:minHeight="0dp"
|
|
|
|
android:minWidth="150dp"
|
|
|
|
android:paddingBottom="6dp"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:paddingTop="6dp"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:textAllCaps="true"
|
|
|
|
android:textOff="@string/status_content_warning_show_more"
|
|
|
|
android:textOn="@string/status_content_warning_show_less"
|
|
|
|
android:textSize="?attr/status_text_medium" />
|
2017-11-08 07:31:44 +11:00
|
|
|
|
2017-01-23 16:19:30 +11:00
|
|
|
<TextView
|
2017-07-14 15:06:32 +10:00
|
|
|
android:id="@+id/notification_content"
|
2017-03-08 06:42:01 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-01-23 16:19:30 +11:00
|
|
|
android:layout_height="wrap_content"
|
2018-03-16 05:15:12 +11:00
|
|
|
android:layout_below="@id/notification_content_warning_button"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:layout_toEndOf="@+id/notification_status_avatar"
|
|
|
|
android:lineSpacingMultiplier="1.1"
|
2017-07-14 15:06:32 +10:00
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:textColor="?android:textColorTertiary"
|
2017-12-02 07:52:10 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-10-18 09:20:26 +11:00
|
|
|
tools:text="Example status here" />
|
2017-07-14 15:06:32 +10:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/notification_status_avatar"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:layout_below="@id/notification_top_text"
|
|
|
|
android:layout_marginBottom="14dp"
|
|
|
|
android:layout_marginEnd="14dp"
|
|
|
|
android:layout_marginRight="14dp"
|
|
|
|
android:layout_marginTop="10dp"
|
2017-07-14 15:06:32 +10:00
|
|
|
android:contentDescription="@string/action_view_profile"
|
|
|
|
android:paddingBottom="12dp"
|
|
|
|
android:paddingRight="12dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
tools:ignore="RtlHardcoded,RtlSymmetry"
|
2017-10-18 09:20:26 +11:00
|
|
|
tools:src="@drawable/avatar_default" />
|
2017-07-14 15:06:32 +10:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/notification_notification_avatar"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_alignBottom="@+id/notification_status_avatar"
|
2018-02-17 08:12:56 +11:00
|
|
|
android:layout_alignEnd="@id/notification_status_avatar" />
|
2017-01-23 16:19:30 +11:00
|
|
|
|
2017-07-14 15:06:32 +10:00
|
|
|
</RelativeLayout>
|