We´re going to give devices to clients and they need to be able to call us with a button. In my fullscreen Activity I have a button that calls the helpdesk phonenumber, so onClick() it does the following:
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();
}
When the dialer closes, suddenly the titlebar stays visible, I´m guessing it has something to do with overriding the HOME button:
@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();
}
}
Does anybody have a solution for this issue?
I tried the following:
I put in the manifest:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
and used in OnCreate:
requestWindowFeature(Window.FEATURE_NO_TITLE);
And in both onCreate() as well as in onResume():
getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
Still the titlebar is shown.