<RelativeLayout android:id="@+id/poi_list_container" android:layout_width="360dp" android:layout_height="wrap_content" android:background="@drawable/bg_list_circular" android:visibility="gone"> <ListView android:id="@+id/poi_list" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="none" /> </RelativeLayout> <RelativeLayout android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="3"> <com.baidu.mapapi.map.MapView android:id="@+id/bmapView" android:layout_width="match_parent" android:layout_height="match_parent" android:clickable="true" android:focusable="true" /> </RelativeLayout> 这个layout,是listview在左边,mapview在右边,点击listview后,我让这个mPoiListContainer.setVisibility(View.GONE);隐藏,那么点击跳转的时候,maoview就会往左边扩大,占满全屏,因为包含listview的RelativeLayout隐藏了,这时mapview上面有一个黑屏,这个问题帮我解决一下,还是让listview在mapview的左边
时间: 2024-02-07 15:02:15 浏览: 135
您可以将这两个RelativeLayout的位置交换一下,将包含ListView的RelativeLayout放在后面,将包含MapView的RelativeLayout放在前面。这样在点击ListView后,将其隐藏之后,MapView就会自动占满整个屏幕,而不会出现黑屏的情况。
具体修改如下:
```
<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3">
<com.baidu.mapapi.map.MapView
android:id="@+id/bmapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:focusable="true" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/poi_list_container"
android:layout_width="360dp"
android:layout_height="wrap_content"
android:background="@drawable/bg_list_circular"
android:visibility="gone">
<ListView
android:id="@+id/poi_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none" />
</RelativeLayout>
```
阅读全文