I'm starting on android, and I know very little! I'm developing slowly and with each change I save the apk and see it running on my cell 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 do not know if I'm actually doing it wrong or if there is compatibility!
I use Android Studio and in the 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'm referring to is in the following image!