すべてのアクティビティで使用するアクション バーを 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
、アクティビティが表示されると非表示になります。この問題の解決策はありますか?