android:theme="@android:style/Theme.NoTitleBar" to the AndroidManifest.xml with no effect.
Are there any other options?
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//setContentView(R.layout.activity_main);
// remove status bar so app will be full screen
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN |
WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
super.loadUrl("file:///android_asset/www/index.html";
}
Also, I needed to add:
import android.view.WindowManager;
to the imports at the top.
Thanks