Application name does not appear in the same emulator it appears when I am touching the code

0

The name of the application you are doing in android studio does not appear on the emulator screen.

The installed icon and name appear, but it does not appear on the screen or in the program.

Would you enter the folder res and string or manisfesto to change anything?

    
asked by anonymous 19.06.2016 / 23:34

1 answer

0

Speak to Jefferson,

In your AndroidManifest.xml, you should leave the activity label set, for example:

<activity
    android:name=".MainActivity"
    android:label="@string/titulo_da_tela" >
</activity>

This will make this label appear in ActionBar.

Hugs.

    
20.06.2016 / 15:11