0

我目前正在开发一个小型应用程序,该应用程序将允许用户在启动时看到谷歌地图。屏幕应该在顶部显示一个菜单栏,但是当我在任何设备上运行我的应用程序时,地图会显示在整个布局中,覆盖菜单栏。

我将如何阻止片段与我的菜单栏重叠?

这是我当前的活动布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/dark_grey"
    android:orientation="vertical"
    android:weightSum="10"
    map:mapType="normal"
    tools:context=".Map" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="@color/white"
        android:orientation="horizontal"
        android:weightSum="3" >

        <ImageView
            android:id="@+id/imageView2"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:src="@drawable/ic_launcher" />

        <Spinner
            android:id="@+id/menuSpinner"
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="2"
            android:entries="@array/menu_array"
            android:textSize="10sp" />
    </LinearLayout>

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

    </LinearLayout>

如您所见,布局相当简单,只是菜单栏作为LinearLayout,地图作为片段。

代码也很简单,只需设置微调器并初始化地图。

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(edu.wcu.trackerapp.R.layout.activity_map);
    // Initialize the spinner
    menu = (Spinner) findViewById(R.id.menuSpinner);
    // Set up the listener for the spinner.
    menu.setOnItemSelectedListener(this);
    try {
        // Loading map
        initializeMap();
    } catch (Exception e) {
        e.printStackTrace();
    }

}

/**
 * function to load map. If map is not created it will create it for you
 * */
private void initializeMap() {
    if (googleMap == null) {
        googleMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
        if (googleMap == null) {
            Toast.makeText(getApplicationContext(),
                    "Sorry! unable to create maps", Toast.LENGTH_SHORT)
                    .show();
        } else {
            googleMap.setMyLocationEnabled(true);
            googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(
                    cullowLocation, 15));
        }
    }
}

最后,这是在设备上运行的应用程序的屏幕截图,其中启用了地图代码。地图全屏截图

4

1 回答 1

3

您的布局的垂直/高度部分当前是

<LinearLayout
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:weightSum="10">

    <LinearLayout
        android:layout_height="0dp"
        android:layout_weight="1" />

    <fragment
        android:layout_height="wrap_content" />

</LinearLayout>

如果您像为其他人所做的那样将重量和高度添加到地图片段,它应该可以工作。

<LinearLayout
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:weightSum="10">

    <LinearLayout
        android:layout_height="0dp"
        android:layout_weight="1" />

    <fragment
        android:layout_height="0dp"
        android:layout_weight="9" />

</LinearLayout>

或者如果你不使用重量

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

    <LinearLayout
        android:layout_height="wrap_content"
     />

    <fragment
        android:layout_height="match_parent"
     />

</LinearLayout>
于 2013-11-08T21:54:55.250 回答