7
I’m starting on android, and know very little! I’m developing slowly and with each change I save the apk and see it running on my phone. I noticed that there is a bar in the app with the name of the application! I would like to take this bar! I saw several tutorials on the internet, but none worked! I don’t know if I’m actually doing it wrong or if it has to do with compatibility!
I use Android Studio and in Theme I put "Notitlebar", but it does not work!
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="proj.beta" >
<application
android:allowBackup="true"
android:icon="@mipmap/logo"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
The Title_bar I refer to is in the following image!
You really want to completely remove the bar or just the title?
– regmoraes
Is Titlebar or actionBar?
– Mateus Carvalho
@Mateuscarvalho is the same Titlebar, actionBar is where the clock is and the other icons, is not?
– ivan veloso
@regmoraes I want to remove completely
– ivan veloso