我正在使用Kotlin开发一个Android应用程序,但是在XML文件 fileactivities_maps.xml 中,如果我删除了bottomnavigationview
部分,则上面的代码不起作用,那么它可以工作:
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MapsActivity">
<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_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
tools:ignore="RtlCompat">
</fragment>
****<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation_view"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrapcontent"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@drawable/nav_selector"
app:itemTextColor="@drawable/nav_selector"
app:menu="@menu/bottom_menu"
/>****
</RelativeLayout>