framelayout里面的Android Gridview显示不正确

时间:2013-10-06 02:48:56

标签: android gridview android-framelayout drawer

我在尝试在FrameLayout上显示gridview时出现问题。

我正在使用FrameLayout,因为我的导航抽屉处于相同的活动中。

问题如下:

编辑:我必须只允许链接,因为stackoverflow不允许我发布图像。

http://i.stack.imgur.com/yZNVI.png

这是我的代码:

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


<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff">
     <LinearLayout android:id="@+id/header"
        android:background="@layout/header_gradient"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <ImageView android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:layout_marginLeft="10.0dip"
            android:src="@drawable/logo"
            android:contentDescription="@string/img_foot_desc"/>
    </LinearLayout>
     <LinearLayout android:orientation="vertical"
        android:padding="10.0dip"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <GridView
    android:id="@+id/gridView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="4dp"
    android:columnWidth="100dp"
    android:gravity="center"
    android:numColumns="auto_fit"
    android:stretchMode="columnWidth"
    android:layout_gravity="center_horizontal|center_vertical">
</GridView>
    </LinearLayout>
    <LinearLayout android:orientation="horizontal"
        android:id="@+id/footer"
        android:background="@layout/footer_repeat"
        android:layout_width="fill_parent"
        android:layout_height="90.0dip"
         />
    </FrameLayout>

<ListView
    android:id="@+id/left_drawer"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:choiceMode="singleChoice"
    android:divider="@android:color/transparent"
    android:dividerHeight="0dp"
    android:background="#069"/>

有什么方法可以正确显示它吗?

提前致谢!

1 个答案:

答案 0 :(得分:0)

尝试调整android:layout_margin="4dp"或将其从<GridView>..</GridView>删除。