FrameLayout にグリッドビューを表示しようとしているときに問題が発生しました。
ナビゲーション ドロワーが同じアクティビティ上にあるため、FrameLayout を使用しています。
問題は次のとおりです。
編集:スタックオーバーフローでは画像を投稿できないため、リンクのみを許可する必要がありました。
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"/>
正しく表示する方法はありますか?
前もって感謝します!