| 123456789101112131415161718192021222324252627 |
- <?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:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <com.hjq.bar.TitleBar
- android:id="@+id/tb_risk_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- app:backButton="false"
- app:barStyle="transparent"
- app:title="风险提示"
- app:titleColor="@color/black" />
- <android.support.v7.widget.RecyclerView
- android:id="@+id/risk_rv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- </android.support.v7.widget.RecyclerView>
- </LinearLayout>
|