Newer
Older
CasicSmartTube / app / src / main / res / layout / item_group_rv.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginHorizontal="@dimen/dp_10"
    android:layout_marginBottom="@dimen/dp_10"
    android:background="@drawable/bg_solid_layout_white_radius_10"
    android:padding="@dimen/dp_10">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:orientation="horizontal">

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:id="@+id/groupNameView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/app_name"
                android:textColor="@color/mainTextColor"
                android:textSize="@dimen/sp_16" />

            <TextView
                android:id="@+id/groupLocationView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/app_name" />

            <TextView
                android:id="@+id/installDateView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="2019-10-09"
                android:textColor="@color/hintTextColor" />
        </LinearLayout>

        <ImageView
            style="@style/RelativeRightImageStyle"
            android:layout_marginEnd="0dp" />
    </LinearLayout>
</LinearLayout>