0
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ruimiguel.pap">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@android:style/Theme.NoTitleBar">
<activity
android:name=".MainActivity"
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>
</application>
</manifest>
I just put: android:theme="@android:style/Theme.NoTitleBar"
& android:theme="@android:style/Theme.NoTitleBar"
It would be better to present the code in textual form for better analysis.
– user28595
Do not put here in the comments, click EDIT and add the full xml in the question.
– user28595
That’s it! Either this or the other?
– Rui Lopes
When the application does not open, it shows some error in Logcat ? Also please inform.
– Viktor Hugo
No, it just says the app has stopped working ...
– Rui Lopes