我正在关注教程http://www.truiton.com/2015/02/android-volley-example/。请告诉我项目中此错误的解决方案。
答案 0 :(得分:0)
android:theme="@style/Theme.AppCompat`
但最好在AppTheme
中使用父styles.xml
创建样式Theme.AppCompat
,因为它会让您更具可自定义性
<style name="AppTheme" parent="Theme.AppCompat">
<!-- Customize your theme here. -->
</style>
然后在AndroidManifest.xml中
android:theme="@style/AppTheme"