按钮未显示在“地图活动”顶部

时间:2019-04-08 04:51:46

标签: google-maps android-layout android-fragments android-activity

我正在尝试在布局中的“地图活动”顶部添加一个按钮。 我只想在地图布局上显示一个按钮,但是我尝试了不同的布局(约束,相对...),但没有任何效果。我还尝试将地图片段放在按钮之前和之后的XML中的相对布局中,但是它什么也没做,只显示地图。

我调整了地图的大小,甚至删除了地图布局,但地图仍以全屏显示。

<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/constrainLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <fragment
        android:id="@+id/map"
        class="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="270dp"
        android:layout_height="336dp"
        android:layout_marginStart="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:context="com.parse.starter.RidersActivity" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="16dp"
        android:layout_marginRight="16dp"
        android:layout_marginBottom="16dp"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintRight_toRightOf="parent" />

</android.support.constraint.ConstraintLayout>

3 个答案:

答案 0 :(得分:0)

您无需说出ConstraintLayout的方向。只需将片段大小设置为perfect,然后        android:layout_width="match_parent",添加按钮并将其约束到您的片段:

您无需说出ConstraintLayout的方向。只需将片段大小设置为android:layout_height="match_parent",然后     android:layout_width="match_parent",添加按钮并将其约束到您的片段:

android:layout_height="match_parent"

它看起来像这样:

enter image description here

答案 1 :(得分:0)

只需将您的片段height and weight属性设为match_parent

尝试以下代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/constrainLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="160dp"
        android:layout_marginBottom="652dp"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintRight_toRightOf="parent" />

</android.support.constraint.ConstraintLayout>

希望它对您有用

答案 2 :(得分:0)

我终于找到了问题,我不小心创建了2个类似的活动,并且我编辑了错误的活动,这就是为什么没有错误。感谢所有尝试提供帮助的人。