0

私のプロジェクトには、xml (メイン) に 2 つのフラグメントを持つアクティビティがあります。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.fragments.MainActivity">

    <fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.MapFragment" />

    <fragment
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.example.list" />
</RelativeLayout>

ご覧のとおり、そのうちの 1 つがマップ フラグメントです。問題は、setContentView()が実行されているときにアプリが API 23 でクラッシュすることです。ドキュメントを使用して以前に (場所) アクセス許可のチェックを試みましsetContentView()たが、アプリは引き続きクラッシュします。何か案が?

4

1 に答える 1

0

この方法でコードを変更してみてください。

<fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:name="com.google.android.gms.maps.SupportMapFragment"/>
于 2016-02-28T10:18:58.267 に答える