forked from github/wulkanowy-mirror
91 lines
3.5 KiB
XML
91 lines
3.5 KiB
XML
<FrameLayout 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/messagePreviewContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/messagePreviewContentContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/messagePreviewSubject"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="15dp"
|
|
android:lineSpacingMultiplier="1.2"
|
|
android:textSize="22sp"
|
|
tools:text="@tools:sample/lorem" />
|
|
|
|
<TextView
|
|
android:id="@+id/messagePreviewAuthor"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="4dp"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:textSize="15sp"
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
<TextView
|
|
android:id="@+id/messagePreviewDate"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="15dp"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:textSize="15sp"
|
|
tools:text="@tools:sample/date/ddmmyy" />
|
|
|
|
<TextView
|
|
android:id="@+id/messagePreviewContent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:autoLink="web"
|
|
android:lineSpacingMultiplier="1.2"
|
|
android:textIsSelectable="true"
|
|
tools:text="@tools:sample/lorem" />
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/messagePreviewError"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:padding="10dp"
|
|
android:visibility="invisible">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:minWidth="100dp"
|
|
android:minHeight="100dp"
|
|
app:srcCompat="@drawable/ic_more_messages_24dp"
|
|
app:tint="?android:attr/textColorPrimary"
|
|
tools:ignore="contentDescription" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:gravity="center"
|
|
android:text="@string/message_preview_error"
|
|
android:textSize="20sp" />
|
|
</LinearLayout>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/messagePreviewProgress"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:indeterminate="true" />
|
|
</FrameLayout>
|