我正在观察Google地图的意外行为。 问题是使用Support Map Fragment从顶部和底部区域获取裁剪, 如果我使用全屏,则地图完全可见,如图1所示,但如果我应用地图片段高度或权重属性,则地图不完全可见,如图2所示。
图片1的布局xml:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.paki.venturedive.awtest.MapsActivity" />
图片2的布局xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.6"
tools:context="com.paki.venturedive.awtest.MapsActivity" />
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Hello world"
android:layout_weight="0.4" />
Java代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
}
在图2中,我(用户将)无法看到格陵兰岛上方的北极海洋,同样底部区域将会丢失,如图3 所示。
有没有人面对这个问题,或者有人知道如何应对吗?
敬请任何参考链接或提示。
答案 0 :(得分:2)
使用此代码段。 我得到了你所说的,通过在线性/相对布局中获取地图片段,地图从顶部和底部切割而一些部分不可见。由于您希望地图占据屏幕的60%,因此可以采用FrameLayout中的地图片段,其高度为match_parent。
现在,将LinearLayout中的textview作为FrameLayout,并将其重力设置为bottom,并使用 DisplayMetrics 将其高度动态设置为屏幕的40%(或您的需求量)类。通过这种方式,我们确保为地图提供全屏,以便不会切割任何部分,并在地图上方显示文本。我也附上了更新的屏幕截图。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map_framecontainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<fragment
android:id="@+id/fragment_map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:id="@+id/tv_main">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/fragment_map"
android:layout_gravity="center"
android:background="#ffffff"
android:text="Hello world" />
</LinearLayout>
</FrameLayout>
onCreate for DisplayMetrics中的java代码:
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
mylinearlayout.setMinimumHeight((int)(metrics.heightPixels * 0.4));
我认为这会有所帮助。