我的Relativelayout不会显示在FrameLayout

时间:2017-09-14 04:24:51

标签: android android-layout relativelayout android-framelayout

enter image description here好的,我已经制作了fragment_googlemap.xml,并且我将FrameLayout设计为根布局,因为我需要将mapView作为片段。切入追逐,我想要发生的是在谷歌地图的顶部显示微调和浮动动作按钮。但是当我运行应用程序时,我看不到relativelayout的孩子(微调器和浮动按钮)。我认为这是在谷歌地图视图下,因为我可以在加载时在googlemap下看到它们一秒钟。 对此有何解决方案?

OOOHH和BTW我不知道为什么浮动按钮中的高程属性的值不起作用任何想法请????

对不起,如果我的英语很差:(并提前Thx !!!

=======这是我下面的xml文件源代码===========

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:fab="http://schemas.android.com/tools"
    android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <Spinner
        android:id="@+id/spinner_countries"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignRight="@+id/fab"
        android:layout_below="@+id/fab"
        android:entries="@array/location_arraysResc" />


    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:layout_gravity="end|top"
        android:layout_margin="10dp"
        android:backgroundTint="@color/colorPrimary"
        android:elevation="6dp"
        android:src="@drawable/paperplane"
        android:tint="#000000"
        app:borderWidth="0dp"
        app:rippleColor="#eF43ef" />
    </RelativeLayout>


    <com.google.android.gms.maps.MapView
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent">


    </com.google.android.gms.maps.MapView>


</FrameLayout> 

4 个答案:

答案 0 :(得分:2)

您可以将FrameLayout视为LinearLayout,除非它将视图叠加在一起。布局中的最后一个视图将是屏幕上的顶视图。

因此,如果您想在MapView之上放置一些内容,则应将这些视图标记放在 <MapView>标记之后。

答案 1 :(得分:2)

试试这个

1。 FloatingActionButton使用app:elevation="6dp" android:elevation="6dp" <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent"> <com.google.android.gms.maps.MapView android:id="@+id/map" android:layout_width="match_parent" android:layout_height="match_parent"> </com.google.android.gms.maps.MapView> <android.support.design.widget.FloatingActionButton android:id="@+id/fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentEnd="true" android:layout_alignParentTop="true" android:layout_margin="10dp" android:backgroundTint="@color/colorPrimary" android:elevation="6dp" android:src="@drawable/ic_info_black_24dp" android:tint="#000000" app:borderWidth="0dp" app:rippleColor="#eF43ef" /> <Spinner android:id="@+id/spinner_countries" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentEnd="true" android:layout_alignRight="@+id/fab" android:layout_below="@+id/fab" android:entries="@array/myarray" /> </RelativeLayout> {}

System.out.println(myClass.toString().equals("Apple"));

答案 2 :(得分:1)

您可以将MapView放入新的RelativeLayout内,试试这个。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:fab="http://schemas.android.com/tools"
    android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    >

    <Spinner
        android:id="@+id/spinner_countries"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignRight="@+id/fab"
        android:layout_below="@+id/fab"
        android:entries="@array/location_arraysResc" />


    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:layout_gravity="end|top"
        android:layout_margin="10dp"
        android:backgroundTint="@color/colorPrimary"
        android:elevation="6dp"
        android:src="@drawable/paperplane"
        android:tint="#000000"
        app:borderWidth="0dp"
        app:rippleColor="#eF43ef" />
    </RelativeLayout>

     <RelativeLayout
        android:id="@+id/spinner_countries"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <com.google.android.gms.maps.MapView
          android:id="@+id/map"
          android:layout_width="match_parent"
          android:layout_height="match_parent">
        </com.google.android.gms.maps.MapView>

   </RelativeLayout

</FrameLayout> 

答案 3 :(得分:1)

试试这个

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:fab="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

<com.google.android.gms.maps.MapView
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

</com.google.android.gms.maps.MapView>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Spinner
        android:id="@+id/spinner_countries"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignRight="@+id/fab"
        android:layout_below="@+id/fab"
        android:entries="@array/location_arraysResc" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:layout_gravity="end|top"
        android:layout_margin="10dp"
        android:backgroundTint="@color/colorPrimary"
        android:elevation="6dp"
        android:src="@drawable/paperplane"
        android:tint="#000000"
        app:borderWidth="0dp"
        app:rippleColor="#eF43ef" />
</RelativeLayout>