gpt4 book ai didi

android - NavigationView headerlayout 不滚动

转载 作者:行者123 更新时间:2023-11-29 20:11:40 24 4
gpt4 key购买 nike

我有一个简单的问题!我被困在上面了。我已经看到了很多答案,并尽了我所能。

这是我的DrawerLayout:

<?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:context=".BaseNavDrawerActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<include
android:id="@+id/toolbar"
layout="@layout/layout_toolbar" />
</android.support.design.widget.AppBarLayout>

<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_drawer_header_layout"
app:itemBackground="@color/white"
app:itemTextColor="@color/nav_text_color_selector"
app:itemIconTint="@color/nav_text_color_selector"
app:menu="@menu/nav_drawer" />
</android.support.v4.widget.DrawerLayout>

这是我的nav_drawer_header_layout:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="200dp"
android:gravity="bottom"
android:background="@drawable/drawer_cover">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/google_logo"
android:id="@+id/image_account"
android:scaleType="centerCrop"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="17dp" />

<Spinner
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/spinner_accounts_list"
android:layout_alignParentBottom="true"
android:layout_marginBottom="10dp"
android:spinnerMode="dropdown"
android:layout_marginLeft="18dp"
android:layout_marginStart="18dp"
android:layout_marginEnd="22dp"
android:layout_marginRight="22dp" />
</RelativeLayout>

当我滚动 NavigationDrawer 时,只有 NavigationView 滚动,但 headerlayout(nav_drawer_header_layout) 保持静止并且根本不滚动。

我知道 DrawerLayout 完全滚动,但我被困在这里。

我做错了什么?

EDIT-1

Java 代码 fragment :

mNavViewHeaderLayout = LayoutInflater.from(EmailActivity.this).inflate(R.layout.nav_drawer_header_layout, mNavigationView);
mSpinnerAccounts = (Spinner)mNavViewHeaderLayout.findViewById(R.id.spinner_accounts_list);

最佳答案

你需要做两件事。

  1. 从您的 NavigationView 中删除 app:headerLayout="@layout/nav_drawer_header_layout"

  2. 在运行时在导航 View 中扩充标题。

    查看 headerLayout = navigationView.inflateHeaderView(R.layout.nav_header_home);

    TextView txtContact = (TextView) headerLayout.findViewById(R.id.txtContact);

    TextView txtHeaderLogoName = (TextView) headerLayout.findViewById(R.id.txtHeaderLogoName);

关于android - NavigationView headerlayout 不滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34716266/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com