android - At the top of my app there is my app name how do I get rid of it? -
how rid of margin @ top app name , icon? here sdk versions if need them android:minsdkversion="11" android:targetsdkversion="17"
change manifest file :
<application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@android:style/theme.notitlebar" >
note android:theme="@android:style/theme.notitlebar"
Comments
Post a Comment