2017-11-09 16:25:14 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-11-17 19:09:36 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-11-19 17:13:35 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
tools:context="com.habitrpg.android.habitica.ui.fragments.NavigationDrawerFragment">
|
2017-11-17 19:09:36 +00:00
|
|
|
|
2018-11-19 17:13:35 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/menuHeaderView"
|
|
|
|
|
android:layout_width="match_parent"
|
2022-12-19 13:40:02 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:minHeight="64dp"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:paddingStart="16dp"
|
|
|
|
|
android:paddingEnd="1dp"
|
2018-11-19 17:13:35 +00:00
|
|
|
android:gravity="center_vertical"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:orientation="horizontal"
|
2022-12-19 13:40:02 +00:00
|
|
|
android:background="?colorPrimaryOffset"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:baselineAligned="false">
|
2017-11-17 19:09:36 +00:00
|
|
|
|
2023-09-22 14:57:40 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.RoundedFrameLayout
|
2018-11-19 17:13:35 +00:00
|
|
|
android:layout_width="40dp"
|
|
|
|
|
android:layout_height="40dp"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_marginEnd="@dimen/spacing_large"
|
2023-09-15 10:10:14 +00:00
|
|
|
android:background="@drawable/rounded_avatar_bg"
|
|
|
|
|
android:clipToPadding="true"
|
|
|
|
|
android:clipChildren="true">
|
2022-05-17 13:16:19 +00:00
|
|
|
<com.habitrpg.common.habitica.views.AvatarView
|
2018-11-19 17:13:35 +00:00
|
|
|
android:id="@+id/avatarView"
|
|
|
|
|
android:layout_width="70dp"
|
|
|
|
|
android:layout_height="70dp"
|
|
|
|
|
android:layout_gravity="center"/>
|
2023-09-22 14:57:40 +00:00
|
|
|
</com.habitrpg.android.habitica.ui.RoundedFrameLayout>
|
2018-11-19 17:13:35 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/toolbarTitle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:maxLines="1"
|
|
|
|
|
android:singleLine="true"
|
|
|
|
|
tools:text="Habitica"
|
|
|
|
|
style="@style/Body1"
|
|
|
|
|
android:textColor="@color/white"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/usernameTextView"
|
|
|
|
|
android:layout_width="wrap_content"
|
2017-11-17 19:09:36 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-11-19 17:13:35 +00:00
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:maxLines="1"
|
|
|
|
|
android:singleLine="true"
|
|
|
|
|
tools:text="\@username"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textColor="@color/white_80_alpha"/>
|
|
|
|
|
</LinearLayout>
|
2018-10-17 14:28:23 +00:00
|
|
|
|
2019-08-24 10:33:14 +00:00
|
|
|
<RelativeLayout
|
2019-03-08 18:51:20 +00:00
|
|
|
android:id="@+id/notificationsButtonWrapper"
|
|
|
|
|
android:layout_width="33dp"
|
2018-11-19 17:13:35 +00:00
|
|
|
android:layout_height="match_parent"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_marginStart="16dp">
|
2019-03-08 18:51:20 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/notificationsButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="@color/transparent"
|
|
|
|
|
android:src="@drawable/menu_notifications"
|
|
|
|
|
android:layout_centerVertical="true"
|
2020-05-08 16:41:58 +00:00
|
|
|
android:clickable="false"
|
|
|
|
|
android:contentDescription="@string/notifications" />
|
2019-04-17 05:31:34 +00:00
|
|
|
|
2019-03-08 18:51:20 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/notificationsBadge"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="20dp"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_alignStart="@id/notificationsButton"
|
2019-04-17 05:31:34 +00:00
|
|
|
android:layout_alignTop="@id/notificationsButton"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_marginStart="13dp"
|
2019-04-17 05:31:34 +00:00
|
|
|
android:layout_marginTop="-13dp"
|
|
|
|
|
android:background="@drawable/badge_circle"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:minWidth="20dp"
|
|
|
|
|
android:paddingTop="0dp"
|
2020-10-06 07:29:45 +00:00
|
|
|
android:textColor="@color/white"
|
2019-03-08 18:51:20 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:visibility="gone"
|
2019-04-17 05:31:34 +00:00
|
|
|
tools:text="1"
|
|
|
|
|
tools:visibility="visible" />
|
2019-03-08 18:51:20 +00:00
|
|
|
</RelativeLayout>
|
2019-08-24 10:33:14 +00:00
|
|
|
<RelativeLayout
|
2019-03-08 18:51:20 +00:00
|
|
|
android:id="@+id/messagesButtonWrapper"
|
|
|
|
|
android:layout_width="33dp"
|
|
|
|
|
android:layout_height="match_parent"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_marginStart="8dp">
|
2018-12-18 21:04:39 +00:00
|
|
|
<ImageView
|
2018-11-19 17:13:35 +00:00
|
|
|
android:id="@+id/messagesButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="@color/transparent"
|
|
|
|
|
android:src="@drawable/menu_messages"
|
2018-12-18 21:04:39 +00:00
|
|
|
android:layout_centerVertical="true"
|
2020-05-08 16:41:58 +00:00
|
|
|
android:clickable="false"
|
|
|
|
|
android:contentDescription="@string/inbox" />
|
2019-04-17 05:31:34 +00:00
|
|
|
|
2018-11-19 17:13:35 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/messagesBadge"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="20dp"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_alignStart="@id/messagesButton"
|
2019-04-17 05:31:34 +00:00
|
|
|
android:layout_alignTop="@id/messagesButton"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_marginStart="13dp"
|
2019-04-17 05:31:34 +00:00
|
|
|
android:layout_marginTop="-12dp"
|
|
|
|
|
android:background="@drawable/badge_circle"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:minWidth="20dp"
|
|
|
|
|
android:paddingTop="0dp"
|
2020-10-06 07:29:45 +00:00
|
|
|
android:textColor="@color/white"
|
2018-11-19 17:13:35 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:visibility="gone"
|
2019-04-17 05:31:34 +00:00
|
|
|
tools:text="1"
|
|
|
|
|
tools:visibility="visible" />
|
2018-11-19 17:13:35 +00:00
|
|
|
</RelativeLayout>
|
2019-08-24 10:33:14 +00:00
|
|
|
<RelativeLayout
|
2018-12-14 15:33:22 +00:00
|
|
|
android:id="@+id/settingsButtonWrapper"
|
|
|
|
|
android:layout_width="43dp"
|
2018-11-19 17:13:35 +00:00
|
|
|
android:layout_height="match_parent"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:paddingStart="8dp">
|
2018-12-18 21:04:39 +00:00
|
|
|
<ImageView
|
2018-11-19 17:13:35 +00:00
|
|
|
android:id="@+id/settingsButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="@color/transparent"
|
|
|
|
|
android:src="@drawable/menu_settings"
|
2020-05-08 16:41:58 +00:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:contentDescription="@string/PS_settings_title" />
|
2018-11-19 17:13:35 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/settingsBadge"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="20dp"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_alignStart="@id/settingsButton"
|
2019-04-17 05:31:34 +00:00
|
|
|
android:layout_alignTop="@id/settingsButton"
|
|
|
|
|
android:layout_centerVertical="true"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_marginStart="13dp"
|
2019-04-17 05:31:34 +00:00
|
|
|
android:layout_marginTop="-12dp"
|
|
|
|
|
android:background="@drawable/badge_circle"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:minWidth="20dp"
|
|
|
|
|
android:paddingTop="0dp"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:textColor="@color/white"
|
2018-11-19 17:13:35 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:visibility="gone"
|
2019-04-17 05:31:34 +00:00
|
|
|
tools:text="1"
|
|
|
|
|
tools:visibility="visible" />
|
2018-11-19 17:13:35 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
|
</LinearLayout>
|
2018-11-06 15:11:02 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-11-17 19:09:36 +00:00
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
|
android:layout_width="match_parent"
|
2018-11-19 17:13:35 +00:00
|
|
|
android:layout_height="match_parent"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="?attr/colorContentBackground"/>
|
2017-11-17 19:09:36 +00:00
|
|
|
</LinearLayout>
|