2021-01-21 18:57:09 +01:00
|
|
|
<?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:layout_marginBottom="8dp"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingBottom="4dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/draftSendingInfo"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:drawablePadding="4dp"
|
|
|
|
android:fontFamily="sans-serif-medium"
|
|
|
|
android:gravity="center_vertical"
|
2022-03-20 20:21:42 +01:00
|
|
|
android:text="@string/drafts_post_failed_to_send"
|
2021-01-21 18:57:09 +01:00
|
|
|
android:textColor="@color/tusky_red"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
|
|
|
app:drawableStartCompat="@drawable/ic_alert_circle"
|
|
|
|
app:drawableTint="@color/tusky_red"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/deleteButton"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2022-04-26 18:50:58 +02:00
|
|
|
<TextView
|
2021-01-21 18:57:09 +01:00
|
|
|
android:id="@+id/contentWarning"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:fontFamily="sans-serif-medium"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/deleteButton"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/draftSendingInfo"
|
|
|
|
tools:text="Some content warning" />
|
|
|
|
|
2022-04-26 18:50:58 +02:00
|
|
|
<TextView
|
2021-01-21 18:57:09 +01:00
|
|
|
android:id="@+id/content"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/deleteButton"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/contentWarning"
|
2022-03-20 20:21:42 +01:00
|
|
|
tools:text="Some post content. May be very long." />
|
2021-01-21 18:57:09 +01:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/deleteButton"
|
|
|
|
style="@style/TuskyImageButton"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_margin="12dp"
|
|
|
|
android:contentDescription="@string/action_delete"
|
|
|
|
android:padding="4dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0"
|
|
|
|
app:srcCompat="@drawable/ic_clear_24dp" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/draftMediaPreview"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/content" />
|
|
|
|
|
|
|
|
<com.keylesspalace.tusky.components.compose.view.PollPreviewView
|
|
|
|
android:id="@+id/draftPoll"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:minWidth="@dimen/poll_preview_min_width"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/draftMediaPreview"
|
|
|
|
app:layout_goneMarginEnd="8dp" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|