我正在使用带有NavigationView的DrawerLayout。
我想在菜单项下面的NavigationDrawer底部放置一个TextView。有可能吗?
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
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:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/activity_core"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<android.support.design.widget.NavigationView
android:id="@+id/nav_drawer_core"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/core_nav_drawer_header"
app:menu="@menu/core_nav_drawer_body"
android:background="@color/core_nav_drawer_background">
<TextView
android:id="@+id/core_nav_drawer_logo_sbs"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.4"
android:gravity="center_vertical"
android:paddingStart="16dp"
android:textColor="@color/white"
android:text="a"/>
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:0)
是的,查看this post解释如何完成它。在提出问题之前尝试搜索stackoverflow,您会惊讶地发出相同问题的频率。
答案 1 :(得分:0)
永远不要浪费你的时间。它为您的应用程序提供了最简单的导航抽屉实现。有一个包含配置文件的标题(AccountHeader),一个用于平板电脑的MiniDrawer(如Gmail),提供自定义DrawerItems,自定义颜色,自定义主题,...没有自定义限制。