我正在尝试打开一个对话框以覆盖大部分屏幕(这意味着它仍然具有很好的四舍五入效果,但覆盖了后面的内容)
我一直在尝试填充父对象,但它的行为像包装内容一样
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_centerHorizontal="true"
>
<LinearLayout
android:gravity="center_horizontal"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<SurfaceView android:id="@+id/surface"
android:layout_width="400px"
android:layout_height="200px"
android:layout_centerHorizontal="true">
</SurfaceView>
<Button android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="Ok, Let me play !!!" />
</LinearLayout>
</LinearLayout>
How can I get a Dialog style activity window to fill the screen?
dialog.getwindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
它可以满足我的要求
所以现在我想知道xml中的耗损是什么(如果可以帮助的话,我尝试将所有布局行为放入xml中而不是代码中,^^)
解决方法:
据我了解,解决How can I get a Dialog style activity window to fill the screen?的问题是在加载xml之后必须修改布局.基本上没有XML可以单独执行此操作.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。