cloudstream/app/src/main/res/layout/home_episodes_expanded.xml

57 lines
2.3 KiB
XML
Raw Normal View History

2021-07-29 01:46:10 +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"
2021-08-29 18:42:44 +00:00
xmlns:tools="http://schemas.android.com/tools"
2022-07-29 15:51:28 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2021-07-29 01:46:10 +00:00
android:orientation="vertical"
android:layout_width="match_parent"
2021-10-31 01:17:56 +00:00
android:background="?attr/primaryGrayBackground"
2021-07-29 01:46:10 +00:00
android:layout_height="wrap_content">
<FrameLayout
2021-10-09 21:59:37 +00:00
android:nextFocusDown="@id/home_expanded_recycler"
2021-07-29 13:39:57 +00:00
android:foreground="?android:attr/selectableItemBackgroundBorderless"
android:id="@+id/home_expanded_drag_down"
2021-07-29 01:46:10 +00:00
android:padding="12dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
2022-01-29 18:57:19 +00:00
<requestFocus />
2022-07-29 15:51:28 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
app:tint="?attr/textColor"
android:id="@+id/home_expanded_delete"
android:layout_marginEnd="10dp"
android:layout_gravity="start|center_vertical"
android:src="@drawable/ic_baseline_delete_outline_24"
android:layout_width="30dp"
android:layout_height="match_parent"
android:contentDescription="@string/delete" />
<TextView
android:id="@+id/home_expanded_text"
style="@style/WatchHeaderText"
tools:text="Trending" />
</LinearLayout>
2022-01-29 18:57:19 +00:00
2021-07-29 01:46:10 +00:00
<ImageView
android:layout_marginEnd="5dp"
android:layout_gravity="end|center_vertical"
android:src="@drawable/ic_baseline_keyboard_arrow_down_24"
android:layout_width="30dp"
android:layout_height="match_parent"
2022-01-29 18:57:19 +00:00
android:contentDescription="@string/home_expanded_hide" />
2021-07-29 01:46:10 +00:00
</FrameLayout>
2022-01-29 18:57:19 +00:00
2021-07-29 01:46:10 +00:00
<com.lagradost.cloudstream3.ui.AutofitRecyclerView
2021-10-09 21:59:37 +00:00
android:descendantFocusability="afterDescendants"
2021-07-29 01:46:10 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/home_expanded_recycler"
2022-01-29 18:57:19 +00:00
tools:listitem="@layout/search_result_grid" />
2021-07-29 01:46:10 +00:00
</LinearLayout>