android-如何删除滑动菜单顶部的黑色封面?
作者:互联网
在我的应用程序中,我有一个由jfeinstein10开发的滑动菜单.
在我的应用程序中,它工作正常;)
我有一个片段,它是MapView的宿主.像我的其他片段一样,该片段是从Fragment类扩展的.就在此片段中,当我打开滑动菜单时,菜单内容顶部有黑色封面/层.当我打开其他片段中的菜单时,没有黑色封面.另外,我发现盒子的高度与片段的高度完全一样.
您以前看过这个问题吗?任何意见或建议,将不胜感激.
=>
更新资料
根据Selei的建议,我将背景设置为透明.但是,无论我分配什么颜色(透明或其他颜色),它仍然是可见的和黑色的:(
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.gms.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
map:uiCompass="true"
android:background="#00000000"/>
解决方法:
解决方案是将map:zOrderOnTop =“ true”添加到XML.
有关更多信息,请参考this link.
标签:slidingmenu,android 来源: https://codeday.me/bug/20191031/1972032.html