作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
如何在 XML 中创建全屏模式,而不管其中的内容有多小?
这是我的“show.xml”代码:
<LinearLayout android:orientation="vertical"
android:layout_height="wrap_content" android:layout_width="fill_parent"
android:layout_gravity="center">
<Button android:id="@+id/ok_btn" android:layout_height="fill_parent"
android:layout_width="fill_parent" android:typeface="sans" android:text="ok"></Button>
</LinearLayout>
我想像另一个全屏页面一样显示它,黑色背景,就像 main.xml。在这种情况下,它就像一个弹出屏幕。删除或更改 android:layout_width 和 android:layout_heigh 不起作用。请帮忙! :(
最佳答案
Afaik 你不能在 xml 中全屏显示。你有两个选择:
AndroidManifest.xml
在 Activity 部分android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
onCreate()
之前调用 setContentView
requestWindowFeature( Window.FEATURE_NO_TITLE );
getWindow().setFlags( WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN );
关于android - 如何在Android中设置XML全屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7843825/
我是一名优秀的程序员,十分优秀!