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

43 lines
1.8 KiB
XML
Raw Normal View History

2021-07-29 00:19:42 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
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:orientation="vertical"
2021-07-30 14:09:57 +00:00
android:layout_width="match_parent"
2021-07-29 00:19:42 +00:00
android:layout_height="wrap_content">
2021-07-29 00:54:27 +00:00
<FrameLayout
android:foreground="?android:attr/selectableItemBackgroundBorderless"
android:id="@+id/home_child_more_info"
android:padding="12dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/home_parent_item_title"
2021-07-29 00:19:42 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2021-07-29 00:54:27 +00:00
android:textColor="?attr/textColor"
android:gravity="center_vertical"
android:textSize="18sp"
android:textStyle="bold"
tools:text="Trending"
2021-07-29 00:19:42 +00:00
/>
2021-07-29 00:54:27 +00:00
<ImageView
android:layout_marginEnd="5dp"
android:layout_gravity="end|center_vertical"
android:src="@drawable/ic_baseline_arrow_forward_24"
android:layout_width="30dp"
android:layout_height="match_parent" android:contentDescription="@string/home_more_info">
</ImageView>
</FrameLayout>
<androidx.recyclerview.widget.RecyclerView
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
android:id="@+id/home_child_recyclerview"
android:orientation="horizontal"
2021-07-30 14:09:57 +00:00
android:layout_width="match_parent"
2021-07-29 00:54:27 +00:00
android:layout_height="wrap_content"
tools:listitem="@layout/home_result_grid"
/>
2021-07-29 00:19:42 +00:00
</LinearLayout>