AquaStream/app/src/main/res/layout/loading_episode.xml

42 lines
1.6 KiB
XML
Raw Normal View History

2021-12-10 23:57:11 +00:00
<?xml version="1.0" encoding="utf-8"?>
2022-01-29 18:57:19 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2021-12-10 23:57:11 +00:00
android:paddingTop="@dimen/loading_margin"
android:paddingBottom="@dimen/loading_margin"
android:orientation="vertical"
android:layout_width="match_parent"
2022-01-29 18:57:19 +00:00
android:layout_height="wrap_content">
<LinearLayout
android:layout_marginBottom="@dimen/loading_margin"
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_height="wrap_content">
<!--app:cardCornerRadius="@dimen/roundedImageRadius"-->
<androidx.cardview.widget.CardView
android:background="@color/grayShimmer"
app:cardCornerRadius="@dimen/loading_radius"
android:layout_width="126dp"
android:layout_height="72dp"
android:foreground="@drawable/outline_drawable" />
2021-12-10 23:57:11 +00:00
<LinearLayout
2022-01-29 18:57:19 +00:00
android:layout_marginStart="15dp"
android:orientation="vertical"
android:layout_gravity="center"
2021-12-10 23:57:11 +00:00
android:layout_width="match_parent"
2022-01-29 18:57:19 +00:00
android:layout_marginEnd="50dp"
2021-12-10 23:57:11 +00:00
android:layout_height="wrap_content">
2022-01-29 18:57:19 +00:00
<include layout="@layout/loading_line" />
<include layout="@layout/loading_line_short" />
2021-12-10 23:57:11 +00:00
</LinearLayout>
</LinearLayout>
2022-01-29 18:57:19 +00:00
<include layout="@layout/loading_line" />
<include layout="@layout/loading_line" />
</LinearLayout>