0
我已經在我的項目,在XML(主)有兩個片段的活性:在運行時Android權限與片段
<?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>
所以就像你所看到的,其中之一就是地圖片段。 問題是當setContentView()
正在運行時,應用程序崩潰在API 23之上。 我試圖在setContentView()
之前進行(位置)權限檢查,使用documantation,應用程序仍然崩潰。 有什麼想法?
你並不需要顯示在地圖的任何許可。如果您訪問用戶的位置,則只需要獲得許可。發佈您的活動代碼。 –
感謝Jyotman Singh,你的回答讓我明白我失去了什麼。 – Daniel