hide the top menu bar in my android device & Tablet

android

Solution

You can achieve this by setting the android:theme attribute to @android:style/Theme.NoTitleBar on your element in your AndroidManifest.xml like this:

<activity android:name=".Activity"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.NoTitleBar">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

Problem

i want to hide the top menu bar in my android device & Tablet.Can any one tell me how to do it?Thanks for any help.

Original source

Related problems