gpt4 book ai didi

android - 如何在Android中设置XML全屏

转载 作者:IT老高 更新时间:2023-10-28 23:37:38 27 4
gpt4 key购买 nike

如何在 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 中全屏显示。你有两个选择:

  1. AndroidManifest.xml 在 Activity 部分
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 
  1. 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com