Spinner单击下拉菜单显示状态栏

时间:2011-06-21 01:03:19

标签: android spinner show-hide

我在我的applicaltion中使用微调器。在我的应用中,Android标题栏和通知栏被隐藏。 但是当我点击微调器时,隐藏的通知栏会在几分之一秒内可见。这是我的代码:

Main.java:

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
// Hide the Title Bar
requestWindowFeature(Window.FEATURE_NO_TITLE);

// Hide the Notification or Status Bar
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);

setContentView(R.layout.myActivity);

main.xml中:

<activity  android:name=".YourClassName"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>

}

但我仍然无法解决这个问题..如果有人有任何解决方案,请告诉我。

1 个答案:

答案 0 :(得分:0)

如果您使用平板电脑分辨率,那么它将无法正常工作。 试试

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

在像这样的应用程序中

 <application android:icon="@drawable/icon" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:label="@string/app_name">

感谢