0

我正在使用导航抽屉寻呼机滑动标签条。它在 Slider 中显示菜单。现在,我想在 Slider 中添加个人资料照片和用户名。我试过添加LinearLayout,但它给出了 ClassCastException。

来源:https ://github.com/Balaji-K13/Navigation-drawer-page-sliding-tab-strip

activity.xml:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <RelativeLayout
        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/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    </RelativeLayout>

    <ListView
        android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@color/lightish"
        android:choiceMode="singleChoice"
        android:divider="@color/blue"
        android:dividerHeight="1dp" />

</android.support.v4.widget.DrawerLayout>
4

1 回答 1

0

使用这个布局,你会得到你需要的。

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawerlayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <!-- Framelayout to display Fragments -->
    <FrameLayout
        android:id="@+id/frameContainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

    </FrameLayout>

    <!-- Left drawer -->
    <LinearLayout
        android:id="@+id/leftDrawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:orientation="vertical"
        android:gravity="center" >

        <ImageView
            android:id="@+id/imgProfilePic"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/user_placeholder_88"
            android:contentDescription="@string/profile_pic" />

        <TextView
            android:id="@+id/lblUsername"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dip"
            android:textStyle="bold"
            android:textAppearance="@android:style/TextAppearance.Medium" />

        <ListView
            android:id="@+id/drawerList"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:choiceMode="singleChoice"
            android:divider="@color/drawerListDivider"
            android:dividerHeight="0dp"        
            android:listSelector="@drawable/drawer_list_selector"
            android:background="@color/drawerListBackground"/>

    </LinearLayout>

</android.support.v4.widget.DrawerLayout>
于 2015-01-27T19:10:57.650 回答