Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialnaufal the Great
Courses Plus Student 591 PointsHello Ben, need to ask you something regarding android studio
Seems like I couldn't find manifest.xml application tab on android studio?
4 Answers
Holger Liesegang
50,595 PointsWelcome to Treehouse, naufal the Great !
At this time, unfortunately you will have to edit the manifest.xml file in Android Studio manually but the editor will assist you there.
naufal the Great
Courses Plus Student 591 PointsI tried to put <b>android:theme="@style/DeviceDefault.NoActionBar.Fullscreen " ></b>
and doesnt work? any help ? It shows the red color line
Holger Liesegang
50,595 PointsTry just using android:theme="@style/AppTheme"
...e.g. my manifest.xml of the Crystal Ball App looks in Android Studio like this:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.holgerliesegang.crystalball.app" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.holgerliesegang.crystalball.app.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>
naufal the Great
Courses Plus Student 591 PointsThank you for you fast response, but I really need to use that theme since Theme.Black.NoTitleBar.Fullscreen doesnt exist
I need the full screen.
so I have to use DeviceDefault.NoActionBar.Fullscreen
Thank you again