我是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();
}
}
然而,结果视图不显示地图而只显示buttons.am我在这里犯了一些错误。 没有添加按钮,片段标签工作正常。 感谢
答案 0 :(得分:0)
您的按钮栏LinearLayout
高度为match_parent
,因此地图容器布局没有更多空间。将按钮栏高度更改为wrap_content
。
同时在那里,您应该将地图容器LinearLayout
高度更改为0px
并在其上设置非零layout_weight
,以便它自动获取父{中的所有剩余空间{ {1}}。