i have a question. i would like remove the title bar from android. i use the java code : (before setcontentview)
to remove title bar :
requestWindowFeature(Window.FEATURE_NO_TITLE);
to full screen:
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
manifest.xml :
android:theme="@android:style/Theme.NoTitleBar"
What else do I need to do?