Titanium JIRA Archive
Appcelerator Community (AC)

[AC-772] AppCompat actionBar.hide() doesn't hide the actionbar prior to a window appearing

GitHub Issuen/a
TypeBug
Priorityn/a
StatusResolved
ResolutionDuplicate
Resolution Date2014-06-17T22:53:17.000+0000
Affected Version/sn/a
Fix Version/sn/a
Componentsn/a
Labelsn/a
ReporterAndrew Greenstreet
AssigneeIngo Muschenetz
Created2014-06-16T23:56:19.000+0000
Updated2016-03-08T07:37:02.000+0000

Description

For example:
var window = Ti.UI.createWindow();
window.addEventListener("open", function f() {
  window.removeEventListener("open", f);
  window.activity.actionBar.hide();
});
window.add(Ti.UI.createLabel({text:"App Compat or just ignore Android < 4.0"});
window.open({
 opacity : 1,
 windowSoftInputMode: titanium.UI.Android.SOFT_INPUT_ADJUST_RESIZE,
});
The action bar will appear for a short time before being hidden. This makes it impossible to make transparent overlay windows, that do not require an Action Bar, without making the app seem clunky and broken. Is it possible to make AppCompat optional or at least make navBarHidden : true work with AppCompat?

Comments

  1. Ingo Muschenetz 2014-06-17

    Resolving as duplicate of linked issue.

JSON Source