Android数据绑定 - 自动将地图片段转换为SupportMapFragment

时间:2018-06-04 07:33:01

标签: android android-fragments android-databinding supportmapfragment

Android数据绑定会自动将视图转换为字段,但默认情况下它不支持转换。这是我的片段视图,我需要SupportMapFragment而不仅仅是Fragment

<fragment
            android:id="@+id/map_fragment"
            android:name="com.google.android.gms.maps.SupportMapFragment"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            tools:context=".ui.views.map.MapFragment" />

1 个答案:

答案 0 :(得分:0)

如果您以传统方式访问它,该怎么办:

mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);