Remember when you wrote the first "Hello World" app ?
Hello World or whatever you named it appears in the title bar of Android.
Go to the manifest file. Find the <application> tag and change it to this :
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"
>
we have added the code in bold... it does the work for us. Now just run again your app.
Hello World or whatever you named it appears in the title bar of Android.
Go to the manifest file. Find the <application> tag and change it to this :
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"
>
we have added the code in bold... it does the work for us. Now just run again your app.
No comments:
Post a Comment