视图不是全屏征服

时间:2013-06-08 20:53:48

标签: android view android-activity fullscreen

我想实现活动的全屏模式。

所以,我先用过:

super.onCreate(savedInstanceState);

requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
                     WindowManager.LayoutParams.FLAG_FULLSCREEN);

setContentView(R.layout.selector);

但这不起作用。所以我删除了该代码并使用了

<style name="Theme.CustomizedFullScreen" parent="android:Theme">
    <item name="android:windowFullscreen">true</item>
    <item name="android:windowNoTitle">true</item>
</style>

此代码。但是,对于这两个代码,结果是:

(在实施代码之前) Before implementing the code

(实施代码后) After implementing the code

那么,出了什么问题?

1 个答案:

答案 0 :(得分:0)

在layout.selector的xml中放置layout_weight =“1”(仅当它在线性布局中时才适用,如果不是,则将其包装在一个中) 还设置其参数宽度和高度以匹配父

这将使应用程序在启动窗口功能请求后重新计算视图的大小