拨打电话后,TYPE_KEYGUARD会保持全屏模式

时间:2012-04-09 13:26:17

标签: android window override statusbar

我们要向客户提供设备,他们需要能够通过按钮给我们打电话。在我的全屏Activity中,我有一个调用帮助台电话号码的按钮,因此onClick()执行以下操作:

    try {
        Intent intent = new Intent(Intent.ACTION_CALL);
        intent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
        intent.setData(Uri.parse("tel:" + phoneNumber));
        mContext.startActivity(intent);
    } catch (Exception e) {
        Toast.makeText(mContext, mContext.getString(R.string.couldntcall), Toast.LENGTH_LONG).show();
    }

当拨号器关闭时,标题栏突然显示,我猜它与覆盖HOME按钮有关:

@Override
public void onAttachedToWindow()
{  //HOMEBUTTON
    if(OnLockMode())
    {   
        this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
          super.onAttachedToWindow();
    }
    else
    {
        this.getWindow().setType(WindowManager.LayoutParams.TYPE_APPLICATION); 
        super.onAttachedToWindow();
    }
}

有没有人有解决这个问题的方法?

我尝试了以下内容:

我放入了清单:

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

并在OnCreate中使用:

requestWindowFeature(Window.FEATURE_NO_TITLE);

onCreate()以及onResume()

getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);

仍显示标题栏。

1 个答案:

答案 0 :(得分:-1)

在清单中添加此内容。

<uses-permission android:name="android.permission.EXPAND_STATUS_BAR"/>

在onCreate()

this.requestWindowFeature(Window.FEATURE_NO_TITLE); 
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setContentView(R.layout.activity_home);
    View v = findViewById(R.id.home_view);
    v.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE);

其中home_view是xml文件的父视图。

 @Override
     public boolean onKeyDown(int keyCode, KeyEvent event) {
            return false;
        }

 public void onWindowFocusChanged(boolean hasFocus)
     {
             try
             {
                if(!hasFocus)
                {
                     Object service  = getSystemService("statusbar");
                     Class<?> statusbarManager = Class.forName("android.app.StatusBarManager");
                     Method collapse = statusbarManager.getMethod("collapse");
                     collapse .setAccessible(true);
                     collapse .invoke(service);
                }
             }
             catch(Exception ex)
             {
             }
     }

你无法捕捉家庭活动,你唯一能做的就是把你的应用程序归类并让用户选择。

 <category android:name="android.intent.category.HOME" />