0

所以我知道有一些解决方法可以在我的 android 应用程序上获取 facebook 幻灯片菜单,可以通过以下方式之一:

1- FrameLayouts (http://stackoverflow.com/a/8673805/1010114)

2-截图(http://stackoverflow.com/a/9768498/1010114)

但是,我想要做的,并且到目前为止对如何实现一无所知,就是在 MapActivity 中有 Facebook 幻灯片菜单。这样,用户可以看到 MapView 并与之交互,并且能够按下菜单按钮来查看菜单(当菜单出现时,如果用户不能与地图的可见部分进行交互也可以)

使用选项 2(屏幕截图)不起作用,因为我似乎不能不拍摄地图视图的屏幕截图(或者至少我不能使用他的方式)

关于如何做到这一点的任何提示/想法?

4

1 回答 1

0

我遇到了同样的问题,并通过在 Activity 上添加 TabHost 来解决它。您可以将 MapActivity 设置为选项卡内容并隐藏它的按钮。

示例代码:

地图.xml:

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

    <com.google.android.maps.MapView
        android:id="@+id/mapview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:clickable="true" />

</LinearLayout>

主.xml:

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

    <Button
        android:id="@+id/menu_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="menu" />

    <TabHost
        android:id="@android:id/tabhost"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

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

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

</LinearLayout>

MyMapActivity.java:

public class MyMapActivity extends MapActivity
{
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.map);
    }
}

我的活动.java:

public class MyActivity extends TabActivity
{
    private LayoutInflater inflater;

    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);

        inflater = LayoutInflater.from(context);
        // Inflate menu here

        // Get the TabHost
        TabHost tabHost = getTabHost();

        // Add the button and content
        TabHost.TabSpec spec = tabHost.newTabSpec("myMapTab")
                .setIndicator("Map")
                .setContent(new Intent(this, MyMapActivity.class));
        tabHost.addTab(spec);

        // Hide the button
        tabHost.getTabWidget().getChildAt(0).setVisibility(View.GONE);

        MapView mapView = (MapView) tabHost.getTabContentView().getChildAt(0).findViewById(R.id.mapview)
    }
}

我希望这能解决你的问题。

于 2012-05-11T15:19:22.300 回答