I am Having trouble while creating new project in Eclipse Luno. After I update Android Eclipse SDK to API 22 then I am start getting this issue, Layout is not showing prope
Try to rebuild the project, It'll work fine.
change the API level mentioned above in xml file thats it
I found it i had same problem go to values/styles.xml change theme to Base.Theme.AppCompat.Light.DarkActionBar or anything you want
Before :
<resources>
<!-- Base application theme. -->
<style name="AppTheme parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
After :
<resources>
<!-- Base application theme. -->
<style name="AppTheme parent="Base.Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
You can solve this problem also by just changing your theme from default app theme. I have solve tin this way only.