【问题标题】:Add Profile Photo and User Name in Slider using Navigation Drawer使用导航抽屉在滑块中添加个人资料照片和用户名
【发布时间】:2014-04-20 12:30:42
【问题描述】:

我正在使用导航抽屉分页器滑动标签条。它在 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>

【问题讨论】:

标签: android navigation-drawer pagerslidingtabstrip


【解决方案1】:

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

<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>

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-08-14
    • 1970-01-01
    相关资源
    最近更新 更多