Giorgos Neokleous
Giorgos Neokleous

Reputation: 1767

Android Empty Screen

I made a code just to learn some android coding. The project is just a true false "game" .But I debugged it and i get empty screen and nothing more..I debugged it on real phone galaxy note II Help me

Upvotes: 0

Views: 123

Answers (2)

Sinan Kozak
Sinan Kozak

Reputation: 3386

RelativeLayout should get proper background. String is not a valid value for background. Try removing

android:background="@string/add"

Upvotes: 0

Libin
Libin

Reputation: 17085

check your layout. issue with the relative layout background. Your setting the string as background

android:background="@string/add"

change it to set to some drawable/color

Upvotes: 1

Related Questions