这是实现导航抽屉的正确方法吗?

时间:2014-08-11 14:24:10

标签: android xml drawer

伙计这是我的代码我已经跟随谷歌开发者网站,我已经实现了导航抽屉问题是我得到一个灰色的叠加,当我从左向左滑动但没有任何出现在它我不知道什么是问题我我认为我没有正确实现它所以你们可以看看我的代码并说出错的地方

我使用线性布局而不是列表视图,但即使放置列表视图后他们也无法查看列表,我也使用线性布局,因为我想添加按钮,以便当我单击此按钮时它将重定向我到另一个布局

<android.support.v4.widget.DrawerLayout    xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" 
android:background="@android:color/white">

<FrameLayout
    android:id="@+id/mainContent"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
</FrameLayout>

<LinearLayout
    android:id="@+id/list"
    android:layout_width="240dp"
    android:layout_height="wrap_content"
    android:layout_gravity="left"
    android:orientation="vertical" >

   <Button
        android:id="@+id/click"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@drawable/tiwtter"
        android:text="" />

</LinearLayout>

<ScrollView 
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
tools:context=".MainActivity" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/background"
    android:orientation="vertical" >


    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginTop="360dp"
        android:text="@string/Title"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/textView3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center|top"
        android:text="@string/explanation"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <Button
        android:id="@+id/email"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@drawable/email"
        android:text="" />

    <Button
        android:id="@+id/web"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@drawable/web"
        android:text="" />

    <Button
        android:id="@+id/fb"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@drawable/fb"
        android:text="" />

    <Button
        android:id="@+id/tweet"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@drawable/tiwtter"
        android:text="" />


 </LinearLayout>

 </ScrollView>


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

0 个答案:

没有答案