Newer
Older
VipVideo / app / src / main / res / layout / item_tv_channel.xml
bello on 13 Jan 2021 700 bytes 接口配置
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/item_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:padding="10dp">

    <TextView
        android:id="@+id/item_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:gravity="center"
        android:maxLines="1"
        android:padding="10dp"
        android:focusable="false"
        android:textColor="@color/white"
        android:textSize="14sp" />

</LinearLayout>