android - TabActivity Implementing -
i trying make tab activity. works fine . make android:theme="@android:style/theme.notitlebar.fullscreen"
in definition in manifest file. not take full screen when launching. program starts splash screen. normal activity. tab @ buttom of screen. tabs go inside screen.
does know problem?
remove .fullscreen , instead use
android:theme="@android:style/theme.notitlebar"
with activity tags in androidmanifest.xml, worked out me
edit
in activity oncreate method use
getwindow().setflags(windowmanager.layoutparams.flag_fullscreen, windowmanager.layoutparams.flag_fullscreen);
Comments
Post a Comment