? I get this error when installing and running the application, but this does not affect the operation of my appl...">

What is the error: screenSize "/">?

I get this error when installing and running the application, but this does not affect the operation of my application. But why am I getting this:

Error: screenSize "/">

This is mistake

+7
android-studio screen-size
source share
1 answer

I was getting the same error, but the project completed successfully.

the problem occurred whenever I reset the tag

eg

<activity android:name=".DetailActivity" android:configChanges="keyboardHidden|screenSize|orientation" /> 

then i did it

 <activity android:name=".DetailActivity" android:configChanges="keyboardHidden|screenSize|orientation"></activity> 

now the error disappears and Android Studio gives me a warning "XML tag has an empty body"

No exact solution found

Checked for

Android Studio 3.0.1

+1
source share

All Articles