confide_good_popup_window.xml 2.87 KB
Newer Older
YKai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
<?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="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical">

    <View
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:background="@color/confide_filters_line"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:orientation="vertical">
        <TextView
            android:id="@+id/tv_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="@dimen/confide_dp_13"
            android:textColor="@color/_6"
            android:layout_marginLeft="24dp"
            android:layout_marginTop="25dp"
            android:layout_marginBottom="8dp"
            tools:text="擅长方向"/>

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/rvGood"
            android:layout_width="match_parent"
            android:layout_marginLeft="@dimen/confide_dp_16"
            android:layout_marginRight="@dimen/confide_dp_16"
            android:layout_height="wrap_content" />
    </LinearLayout>


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:orientation="horizontal">
        <Button
            android:id="@+id/btnReset"
            android:layout_width="0px"
            android:layout_height="37dp"
            android:layout_weight="1"
            android:layout_marginBottom="24dp"
            android:layout_marginTop="8dp"
            android:layout_marginLeft="15dp"
            android:background="@drawable/confide_filter_reset_btn_bg"
            android:text="@string/platform_reset"
            android:textColor="@color/platform_main_theme"
            android:textSize="@dimen/confide_dp_18" />

        <Button
            android:id="@+id/btnConfirm"
            android:layout_width="0px"
            android:layout_height="37dp"
            android:layout_weight="1"
            android:layout_marginLeft="13dp"
            android:layout_marginRight="15dp"
            android:layout_marginBottom="24dp"
            android:layout_marginTop="8dp"
            android:background="@drawable/confide_filter_btn_bg"
            android:gravity="center"
            android:text="@string/platform_confirm"
            android:textColor="@color/white"
            android:textSize="@dimen/confide_dp_18" />
    </LinearLayout>
    <View
        android:id="@+id/v_zhezhao"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#80000000"/>
</LinearLayout>