使用Google地图的Android和Kotlin应用程序开发按地点显示

时间:2018-08-18 10:14:32

标签: android xml kotlin

我正在使用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>

0 个答案:

没有答案