wulkanowy-mod/app/src/main/res/layout/fragment_message_preview.xml

117 lines
4.6 KiB
XML
Raw Normal View History

2018-12-06 11:35:02 -06:00
<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"
2019-03-17 15:02:41 -05:00
android:id="@+id/messagePreviewContainer"
2018-12-06 11:35:02 -06:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2019-03-17 15:02:41 -05:00
<androidx.core.widget.NestedScrollView
2018-12-06 11:35:02 -06:00
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
2019-03-31 15:01:04 -05:00
android:id="@+id/messagePreviewContentContainer"
2018-12-06 11:35:02 -06:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
2019-03-17 15:02:41 -05:00
android:id="@+id/messagePreviewSubject"
2018-12-06 11:35:02 -06:00
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
2019-03-17 15:02:41 -05:00
android:id="@+id/messagePreviewAuthor"
2018-12-06 11:35:02 -06:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
2019-08-26 13:54:20 -05:00
android:textColor="?android:textColorSecondary"
2018-12-06 11:35:02 -06:00
android:textSize="15sp"
tools:text="@tools:sample/full_names" />
<TextView
2019-03-17 15:02:41 -05:00
android:id="@+id/messagePreviewDate"
2018-12-06 11:35:02 -06:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="15dp"
2019-08-26 13:54:20 -05:00
android:textColor="?android:textColorSecondary"
2018-12-06 11:35:02 -06:00
android:textSize="15sp"
tools:text="@tools:sample/date/ddmmyy" />
<TextView
2019-03-17 15:02:41 -05:00
android:id="@+id/messagePreviewContent"
2018-12-06 11:35:02 -06:00
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>
2019-03-17 15:02:41 -05:00
</androidx.core.widget.NestedScrollView>
2018-12-06 11:35:02 -06:00
2018-12-06 11:35:02 -06:00
<LinearLayout
2019-03-17 15:02:41 -05:00
android:id="@+id/messagePreviewError"
2018-12-06 11:35:02 -06:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
2019-08-26 13:54:20 -05:00
android:visibility="invisible"
tools:ignore="UseCompoundDrawables"
tools:visibility="invisible">
2018-12-06 11:35:02 -06:00
2019-08-26 13:54:20 -05:00
<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
app:srcCompat="@drawable/ic_error"
2019-08-26 13:54:20 -05:00
app:tint="?colorOnBackground"
2018-12-06 11:35:02 -06:00
tools:ignore="contentDescription" />
<TextView
android:id="@+id/messagePreviewErrorMessage"
2018-12-06 11:35:02 -06:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:gravity="center"
android:padding="8dp"
android:text="@string/error_unknown"
2018-12-06 11:35:02 -06:00
android:textSize="20sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:gravity="center"
android:orientation="horizontal">
<com.google.android.material.button.MaterialButton
android:id="@+id/messagePreviewErrorDetails"
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:text="@string/all_details" />
<com.google.android.material.button.MaterialButton
android:id="@+id/messagePreviewErrorRetry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/all_retry" />
</LinearLayout>
2018-12-06 11:35:02 -06:00
</LinearLayout>
2019-08-26 13:54:20 -05:00
<me.zhanghai.android.materialprogressbar.MaterialProgressBar
2019-03-17 15:02:41 -05:00
android:id="@+id/messagePreviewProgress"
2019-08-26 13:54:20 -05:00
style="@style/Widget.MaterialProgressBar.ProgressBar"
2018-12-06 11:35:02 -06:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminate="true" />
</FrameLayout>