导航抽屉不是从顶部位置开始的
Navigation Drawer not Starting from top position
我正在使用导航抽屉,有 12 个项目并且运行良好。当我打开导航抽屉时,它从顶部的第 3 个项目开始显示,我的个人资料图片在顶部,但没有显示。我想从头开始。我的头像在哪里。我用过`mDrawerList.setSelection(0);但它从第 3 项开始,然后突然上升到顶部。请帮我解决问题。
我的 XML 代码如下。
<FrameLayout
android:id="@+id/toolbarLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:fitsSystemWindows="true"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/color_primary_green_header"
android:gravity="center_vertical"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark" />
<!-- The main content view -->
<LinearLayout
android:id="@+id/mainContent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#ffffff"
android:orientation="vertical" />
</LinearLayout>
</FrameLayout>
<ListView
android:id="@+id/nav_list"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_below="@+id/profileBox"
android:layout_gravity="start"
android:background="@color/list_background"
android:choiceMode="singleChoice"
android:divider="@null" />
public void onDrawerOpened(View drawerView) {
super.onDrawerOpened(drawerView);
mDrawerList.setSelection(0);
invalidateOptionsMenu();
listAdapter.notifyDataSetChanged();
public void onDrawerClosed(View drawerView) {
super.onDrawerClosed(drawerView);
// Log.d(TAG, "onDrawerClosed: " + getTitle());
Log.e("TKB", " Nav Drawer is closed");
mDrawerList.setSelection(0);
//invalidateOptionsMenu();
}
};
您可以使用 smoothScroll 作为 select 导航抽屉的索引。
我正在使用导航抽屉,有 12 个项目并且运行良好。当我打开导航抽屉时,它从顶部的第 3 个项目开始显示,我的个人资料图片在顶部,但没有显示。我想从头开始。我的头像在哪里。我用过`mDrawerList.setSelection(0);但它从第 3 项开始,然后突然上升到顶部。请帮我解决问题。
我的 XML 代码如下。
<FrameLayout
android:id="@+id/toolbarLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:fitsSystemWindows="true"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/color_primary_green_header"
android:gravity="center_vertical"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark" />
<!-- The main content view -->
<LinearLayout
android:id="@+id/mainContent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#ffffff"
android:orientation="vertical" />
</LinearLayout>
</FrameLayout>
<ListView
android:id="@+id/nav_list"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_below="@+id/profileBox"
android:layout_gravity="start"
android:background="@color/list_background"
android:choiceMode="singleChoice"
android:divider="@null" />
public void onDrawerOpened(View drawerView) {
super.onDrawerOpened(drawerView);
mDrawerList.setSelection(0);
invalidateOptionsMenu();
listAdapter.notifyDataSetChanged();
public void onDrawerClosed(View drawerView) {
super.onDrawerClosed(drawerView);
// Log.d(TAG, "onDrawerClosed: " + getTitle());
Log.e("TKB", " Nav Drawer is closed");
mDrawerList.setSelection(0);
//invalidateOptionsMenu();
}
};
您可以使用 smoothScroll 作为 select 导航抽屉的索引。