1

すべてのアクティビティで使用するアクション バーを xml で作成しました。includeそのタグを使用しました。
私の活動の 1 つにGridViewタグが付いているだけです。以下のソースを見ることができます:

<?xml version="1.0" encoding="utf-8"?>
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/gv_level"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1"
    android:background="@drawable/background_gradient"
    android:columnWidth="100dp"
    android:gravity="center"
    android:numColumns="auto_fit"
    android:stretchMode="columnWidth" >
</GridView>  

問題はありませんが、これにincludeタグまたはその他のタグを追加すると(以下のソースと同様)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

<include
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0"
    layout="@layout/action_bar" />

<GridView
    android:id="@+id/gv_level"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1"
    android:background="@drawable/background_gradient"
    android:columnWidth="100dp"
    android:gravity="center"
    android:numColumns="auto_fit"
    android:stretchMode="columnWidth" >
</GridView>

エラーは発生しませんがGridView、アクティビティが表示されると非表示になります。この問題の解決策はありますか?

4

1 に答える 1

1

ただし、アクティビティが表示されると、グリッドビューは非表示になります。それに対するアリの解決策はありますか?ありがとう。

の向き垂直LinearLayoutに設定して、含まれているレイアウトが右側の画面の外側を押し出さないようにするか、含まれているレイアウトの幅に使用できます。方向変更の使用:GridViewwrap_content

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:orientation="vertical" >

<include
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0"
    layout="@layout/action_bar" />
// ... rest of the layout
于 2013-01-19T09:19:56.630 に答える