Why is my android app "black theme"? -
this question has answer here:
i working around , when tried in emulator app looked this? know problem is? link: https://dl.dropboxusercontent.com/u/97063669/black.png
in values folder create file styles.xml , create theme inside:
<style name="mytheme" parent="android:theme.light"/>
create folder values-v11 in create file styles.xml create theme inside looks this:
<style name="mytheme" parent="android:theme.holo.light"/>
finally in manifest, declare theme:
android:theme="@style/mytheme"
Comments
Post a Comment