我是在 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();
}
}
但是,生成的视图不显示地图,而只显示按钮。我在这里犯了一些错误。如果不添加按钮,片段标签就可以正常工作。谢谢