Android : how to edit the bar at the top of the screen? -
i'm beginning learn android development , have bar @ top of app, containing title of activity , app icon. want know how edit (change text, background color, etc), , remove ? want know how edit title of app, because it's name of main activity...
thanks lot.
edit androidmanifest.xml
<application android:icon="@drawable/icon" android:label="@string/app_label" > ... <activity android:name="foo.myactivity" android:label="@string/activity_label" > </activity> </application>  if don't want titlebar, add attribute:
android:theme="@android:style/theme.notitlebar"  to application tag.
Comments
Post a Comment