尝试在 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"/>
有什么方法可以正确显示吗?
提前致谢!