Skip to content Skip to sidebar Skip to footer

Android 6.0 App Not Loading Activity

I recently updated Android Studio and all associated support libraries, and my application is not progressing passed the first screen. The first screen is a basic LoadingActivity t

Solution 1:

Please post a copy of your Android Manifest:

"app:theme is now deprecated. Please move to using android:theme instead."

Your Application Tag should be in Android Manifest:

<applicationandroid:theme="Theme.AppCompat.Light.NoActionBar"tools:replace="label">

and / or Activity Tag should be in Android Manifest:

<activityandroid:name=".Name"android:launchMode="singleTop"android:theme="Theme.AppCompat.Light.NoActionBar">

The important thing is all activities must have themes using a variant of Theme.AppCompat.* when using AppCompatActivity.

Post a Comment for "Android 6.0 App Not Loading Activity"