我有以下用于 Android 视图的 XML 文件。当我试图集成谷歌地图时,我需要声明命名空间映射,以便设置它的属性。像这样使用,看起来我无法在片段内声明命名空间。我还尝试在命名空间“android”之后声明命名空间(在 RelativeLayout 的开头),但在片段上仍然无法识别命名空间。
我怎么解决这个问题?
<fragment xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/venues_map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
map:cameraZoom="13" />