Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Error:screenSize" />?

I am getting this error on installing and launching the app, but it does not effect working of my app. But still why am I getting this :

Error:screenSize" />

This is the error

like image 351
Tabish Avatar asked Jan 29 '18 10:01

Tabish


1 Answers

I was getting the same error but project run successfully

the problem occurred whenever I collapse tag

for example

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

then i did like this

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

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

No exact solution found

Tested on

Android Studio 3.0.1

like image 142
Rohan Pawar Avatar answered Oct 15 '22 22:10

Rohan Pawar