refactor: implements DrawerMenu with RecyclerView

This commit is contained in:
hyb1996
2017-12-10 15:47:53 +08:00
parent 0c83d4d96a
commit 5f2abf2d85
17 changed files with 479 additions and 553 deletions

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#f0f1f5"
android:paddingTop="@dimen/divider_drawer_menu_group">
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:padding="8dp"
android:textColor="#999999"
android:textSize="12sp">
</TextView>
</FrameLayout>