をテーマにしたMapFragment
のを見せようとしています。これは正常に機能します。ただし、マップには暗いオーバーレイが表示されます。Android Maps v2 API
Activity
@android:style/Theme.DeviceDefault.Light.Dialog.NoActionBar
テーマをに変更する@android:style/Theme.DeviceDefault.Light.NoActionBar
と、マップは次のように表示されます。
これは私のxmlレイアウトファイルです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<fragment
android:id="@+id/mapfragment"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
class="com.google.android.gms.maps.MapFragment" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="HELLO"
android:textSize="@dimen/textsize_large" />
</LinearLayout>
ここで何が起きてるの?