我的活动中有这个布局,我想向“ map_extras
”添加一个对话框片段,但是,对话框片段没有放在屏幕的中心。我做错了什么?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map_activity"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:id="@+id/map_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
</RelativeLayout>
<RelativeLayout
android:id="@+id/map_extras"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</RelativeLayout>
</RelativeLayout>
这是对话框片段布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#FFFFFF"
android:gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="asdf1" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="asdf2" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="asdf3" />
</LinearLayout>