0

Googleマップアプリの下の画像のように、mapViewにlistViewを表示したいです。

最初はマップのみが表示されます。ユーザーがタブをクリックすると、このlistViewがmapViewに表示されます。

ここに画像の説明を入力

しかし問題は、以下のレイアウトを使用すると地図が表示されないことです (灰色の画面が表示されます)。ただし、listView表示されます。

レイアウト :

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

    <TabHost
        android:id="@+id/tabHost"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >
            </TabWidget>

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="match_parent"
                android:layout_height="match_parent" >

                <RelativeLayout
                    android:id="@+id/map_layout"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >

                    <fragment
                        android:id="@+id/map"
                        android:name="com.google.android.gms.maps.MapFragment"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent" />

                    <include layout="@layout/listView" >
                    </include>
                </RelativeLayout>
            </FrameLayout>
        </LinearLayout>
    </TabHost>

</RelativeLayout>

タブの設定方法 :

// Set up tabs
private void setUpTabs() {

    // Get TabHost
    tabHost = (TabHost) findViewById(R.id.tabHost);
    tabHost.setup();

    // Create tabs
    TabSpec sourceOnlyState = tabHost.newTabSpec(SOURCE_ONLY_STATE);
    sourceOnlyState.setContent(R.id.map);
    sourceOnlyState.setIndicator("Source Only");

    TabSpec allState = tabHost.newTabSpec(ALL_STATE);
    allState.setContent(R.id.map);
    allState.setIndicator("All");

    TabSpec mapTypes = tabHost.newTabSpec(MAP_FEATURES);
    mapTypes.setContent(R.id.map_layout);
    mapTypes.setIndicator("Map Types");

    // Add tabs in TabHost
    tabHost.addTab(sourceOnlyState);
    tabHost.addTab(allState);
    tabHost.addTab(mapTypes);

    // Set tab change listener
    tabHost.setOnTabChangedListener(this);
}
4

1 に答える 1

0

タブのOnClickで新しいアクティビティを開始し、そのアクティビティでリストビューに関連するすべてのコードを実行し、アクティビティのテーマを設定します

android:theme="@android:style/Theme.Holo.Dialog.NoActionBar"
于 2013-08-07T10:02:17.000 に答える