XML:
<FrameLayoutandroID:layout_wIDth="match_parent"androID:layout_height="match_parent"androID:layout_weight="1"> <fragment androID:ID="@+ID/fragment" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" /> <linearLayout androID:ID="@+ID/overlay_pane" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:visibility="gone" androID:background="@color/transparent"> </linearLayout></FrameLayout>
然后在我的代码中的某个按钮上,我只是将一个VIEw(在你的情况下它可以只是对话框的内容)添加到overlay_pane linearLayout.
Java示例:
VIEwGroup container = findVIEwByID(R.ID.overlay_pane);container.setVisibility(VIEw.VISIBLE);container.addVIEw(some_vIEw_you_inflated);
但是这个膨胀的视图将具有以下背景:@ drawable / dialog_full_holo_light以获得像Honeycomb样式的漂亮边框效果.
您可以在以下文件夹中的SDK中找到可绘制的背景
your_SDK_dir/platforms/androID-12/data/res/drawable-hdpi/dialog_full_holo_light.9.png
所以只需将其复制到您的drawable中.
注意:您也可以使用dialog_full_holo_dark或任何自定义背景来获得相同的效果.
我希望有所帮助:)如果我在任何时候都不清楚,请告诉我
注意:您可以仅使用具有match_parent的linearLayout而不是使用片段,而是使用layout_wIDth和layout_height.然后你会用“背景”UI填充linearLayout(在问题的例子中……那就是地图)
总结以上是内存溢出为你收集整理的android蜂窝中的d出/覆盖屏幕全部内容,希望文章能够帮你解决android蜂窝中的d出/覆盖屏幕所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)