043ac58254
* Use the entire content warning text + button as the hitbox for the "Show more/less" toggle * Move the content warning toggle button to its own line and give it a little more space * Move content warning elements into parent layout, remove now-superfluous FlowLayout * Use marginTop/Bottom instead of Vertical, which is only in sdk 26+ * Update minimum width for content warning toggle button
142 lines
No EOL
5.7 KiB
XML
142 lines
No EOL
5.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--This applies only to favourite and rebnotificationsEnabledions.-->
|
|
<RelativeLayout 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:id="@+id/notification_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
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"
|
|
android:layout_marginBottom="6dp"
|
|
android:layout_marginTop="8dp"
|
|
android:drawablePadding="10dp"
|
|
android:ellipsize="end"
|
|
android:gravity="center_vertical"
|
|
android:maxLines="1"
|
|
android:paddingStart="28dp"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="?attr/status_text_medium"
|
|
tools:text="Someone favourited your status" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/status_name_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/notification_top_text"
|
|
android:layout_toEndOf="@+id/notification_status_avatar"
|
|
android:paddingBottom="4dp">
|
|
|
|
<TextView
|
|
android:id="@+id/status_display_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:paddingEnd="@dimen/status_display_name_padding_end"
|
|
android:paddingStart="0dp"
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Small"
|
|
android:textColor="?android:textColorTertiary"
|
|
android:textSize="?attr/status_text_medium"
|
|
android:textStyle="normal|bold"
|
|
tools:text="Ente" />
|
|
|
|
<TextView
|
|
android:id="@+id/status_username"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toEndOf="@id/status_display_name"
|
|
android:layout_toStartOf="@+id/status_timestamp_info"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="?android:textColorTertiary"
|
|
android:textSize="?attr/status_text_medium"
|
|
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"
|
|
android:textSize="?attr/status_text_medium"
|
|
tools:text="13:37" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/notification_content_warning_description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
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" />
|
|
|
|
|
|
<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" />
|
|
|
|
<TextView
|
|
android:id="@+id/notification_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/notification_content_warning_button"
|
|
android:layout_toEndOf="@+id/notification_status_avatar"
|
|
android:lineSpacingMultiplier="1.1"
|
|
android:paddingBottom="10dp"
|
|
android:textColor="?android:textColorTertiary"
|
|
android:textSize="?attr/status_text_medium"
|
|
tools:text="Example status here" />
|
|
|
|
<ImageView
|
|
android:id="@+id/notification_status_avatar"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_below="@id/notification_top_text"
|
|
android:layout_marginBottom="14dp"
|
|
android:layout_marginEnd="14dp"
|
|
android:layout_marginRight="14dp"
|
|
android:layout_marginTop="10dp"
|
|
android:contentDescription="@string/action_view_profile"
|
|
android:paddingBottom="12dp"
|
|
android:paddingRight="12dp"
|
|
android:scaleType="fitCenter"
|
|
tools:ignore="RtlHardcoded,RtlSymmetry"
|
|
tools:src="@drawable/avatar_default" />
|
|
|
|
<ImageView
|
|
android:id="@+id/notification_notification_avatar"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_alignBottom="@+id/notification_status_avatar"
|
|
android:layout_alignEnd="@id/notification_status_avatar" />
|
|
|
|
</RelativeLayout> |