我有一个 MapFragment 类,它会在调用它时占据全屏。
从这个问题中,我了解到强制水平布局将需要更改 Android Manifest。但是,如果它用于 MapFragment 类,我该如何实现呢?
这是我的地图显示的 xml,如果它有帮助的话:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<fragment
android:id="@+id/fragment_map"
android:name=".com.fragments.MapFragment"
class="com.fragments.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:tag="tag_fragment_map" />
</FrameLayout>