I am trying to hide the action bar.
For the most part, following these instructions and creating a custom theme seems to work fine:
What I did was:
1) Added the following custom theme
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.NoActionBar" parent="@style/Theme.AppCompat">
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
<!-- AppCompat Compatibility -->
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
</resources>
2) Modify tiapp.xml
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<application android:theme="@style/Theme.NoActionBar"/>
</manifest>
</android>
And for the most part, the title does not appear. However, when you have a window with transparency, you can see the title bar again.
For example consider the following:
Parent Window
Note that there is no action bar here
Window with no transparency
"#win": {
backgroundColor: "red",
}
Note that the action bar is still not visible
Window with some transparency
"#win": {
backgroundColor: "red",
opacity: 0.5,
}