2018-07-26 17:04:44 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
tools:openDrawer="start">
|
|
|
|
|
|
|
|
<include
|
|
|
|
layout="@layout/app_bar_main"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2018-07-29 14:25:55 +02:00
|
|
|
<android.support.design.widget.NavigationView
|
|
|
|
android:id="@+id/nav_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="start"
|
|
|
|
android:fitsSystemWindows="true">
|
|
|
|
|
|
|
|
<android.support.v4.widget.NestedScrollView
|
2018-07-28 07:45:01 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-07-29 14:25:55 +02:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2018-07-28 07:45:01 +02:00
|
|
|
android:layout_height="wrap_content"
|
2018-07-29 14:25:55 +02:00
|
|
|
android:orientation="vertical">
|
2018-07-28 07:45:01 +02:00
|
|
|
|
2018-07-29 14:25:55 +02:00
|
|
|
<include
|
|
|
|
android:id="@+id/nav_header_main_activity"
|
|
|
|
layout="@layout/nav_header_main" />
|
2018-07-28 07:45:01 +02:00
|
|
|
|
2018-07-29 14:25:55 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:background="?attr/selectableItemBackground">
|
2018-07-28 07:45:01 +02:00
|
|
|
|
2018-07-29 14:25:55 +02:00
|
|
|
<ImageView
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_marginEnd="32dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:src="@drawable/ic_account_circle_grey_24dp"/>
|
2018-07-28 07:45:01 +02:00
|
|
|
|
2018-07-29 14:25:55 +02:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/profile"
|
|
|
|
android:textColor="@android:color/black"
|
|
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="#E0E0E0"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/following_label_main_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/following"
|
|
|
|
android:layout_margin="16dp"/>
|
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/subscribed_user_recycler_view_main_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subscriptions_label_main_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/subscriptions"
|
|
|
|
android:layout_margin="16dp"/>
|
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/subscribed_subreddit_recycler_view_main_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2018-07-28 07:45:01 +02:00
|
|
|
|
2018-07-29 14:25:55 +02:00
|
|
|
</android.support.v4.widget.NestedScrollView>
|
2018-07-28 07:45:01 +02:00
|
|
|
|
2018-07-29 14:25:55 +02:00
|
|
|
</android.support.design.widget.NavigationView>
|
2018-07-26 17:04:44 +02:00
|
|
|
|
|
|
|
</android.support.v4.widget.DrawerLayout>
|