当电话状态响起时,我想运行一个活动来显示我自己的屏幕。
我在用着:
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.main);
和
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
但是显示活动时通知栏不会隐藏。