mirror of https://github.com/lizongying/my-tv.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1009 B
29 lines
1009 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/row"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:background="@android:color/transparent"
|
|
android:clickable="true"
|
|
android:focusable="false"
|
|
>
|
|
|
|
<TextView
|
|
android:id="@+id/header"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start"
|
|
android:layout_marginTop="0dp"
|
|
android:layout_marginStart="20dp"
|
|
android:layout_marginBottom="5dp"
|
|
android:gravity="start"
|
|
android:textColor="#FFEEEEEE"
|
|
android:textSize="22sp" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/items"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
</androidx.recyclerview.widget.RecyclerView>
|
|
</LinearLayout> |