0

我是在 android 中进行地图编程的初学者。我正在尝试根据以下布局在我的 mapfragment 上方添加一行按钮:

<?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" >

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


    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Tilt"
        android:onClick="tilt" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Move" 
        android:onClick="move"/>


    </LinearLayout>


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" 
        android:id="@+id/mymap">
    </LinearLayout>

</LinearLayout>

public class MainActivity extends Activity
{

    GoogleMap gm;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.finallay);
        MapFragment mp=new MapFragment();
        getFragmentManager().beginTransaction().add(R.id.mymap,mp).commit();
    }
}

但是,生成的视图不显示地图,而只显示按钮。我在这里犯了一些错误。如果不添加按钮,片段标签就可以正常工作。谢谢

4

1 回答 1

0

您的按钮栏LinearLayout高度是match_parent地图容器布局没有更多空间。将按钮栏高度更改为wrap_content.

同样在那里,您应该将地图容器LinearLayout高度更改为0px并将其设置为非零layout_weight,以便它会自动获取 parent 中的所有剩余空间LinearLayout

于 2013-09-14T14:01:35.467 回答