Я хочу иметь кнопку поверх фрагмента моей карты, поэтому я добавил кнопку внутри фрагмента из этого сообщения , потому что я использую макет ящика. Однако теперь я не могу ничего редактировать с помощью кнопки, например, изменить ширину с помощью minWidth
или что-то подобное в файле. xml. Как настроить кнопку в файле. xml?
<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical"
android:paddingLeft="0dp"
android:paddingRight="0dp">
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="7"
tools:context=".MapsActivity" >
<Button
android:id="@+id/postButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Post"
android:layout_gravity="center_horizontal|bottom"
android:minWidth="100dp"
/>
</fragment>
<com.google.android.material.navigation.NavigationView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/nav_view"
android:layout_gravity="start"
android:background="@color/white"
map:itemTextColor="@color/darkgray"
map:itemIconTint="@color/darkgray"
map:menu="@menu/drawermenu">
</com.google.android.material.navigation.NavigationView>