0

我的活动中有这个布局,我想向“ 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>
4

1 回答 1

0

你到底想在这里做什么?您在屏幕上显示第一个布局并将第二个布局作为片段放置在其中?有一些事情需要考虑/尝试:

  • 第一个布局真的填满了屏幕吗?添加背景颜色进行验证。
  • 您的第二个布局具有wrap_content高度和宽度,因此如果未另行指定,它将放置在其父级的左上角。
  • 尝试更改map_extrasFrameLayoutwithgravity=center而不是 aRelativeLayout
  • 您还可以将第二个布局大小更改match_parent为居中位置。
于 2013-08-08T17:16:00.053 回答