地图片段调整大小

时间:2017-07-29 03:51:14

标签: java android supportmapfragment

我有全屏视图的地图片段。并且摘要弹出窗口在屏幕底部不可见。

  <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/ap_fragement"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context="com.apps.MainActivity" />

 <!--Summary View  -->
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:id="@+id/summary_popup"
        android:visibility="invisible"
        android:padding="10dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#ffffffff">

 <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/title"
            android:textSize="16sp"
            android:textColor="#1A237E"/>

.......


</LinearLayout>

当地图加载时,摄像机视图是设备屏幕的中心,当我显示摘要页面时,它会加载到设备屏幕的底部。

如何将地图片段移动到设备屏幕的上半部分以显示所选/用户位置?就像UBER一样,当我们要求搭车时。

我想移动相机或在片段视图上设置一些不同的布局大小。

2 个答案:

答案 0 :(得分:0)

有多种方法可以做到这一点。您可以重新安排布局和 动态管理或查看this库。

答案 1 :(得分:0)

getFragmentManager().findFragmentById(R.id.ap_fragement).getView().setLayoutParams();

将调整片段的大小。