我正在使用导航抽屉,有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();
}
};
答案 0 :(得分:0)
您可以使用smoothScroll选择导航抽屉的索引。