1. 程式人生 > >Android Studio xml檔案無法預覽

Android Studio xml檔案無法預覽

版權宣告:本文為博主原創文章,未經博主允許不得轉載。 https://mp.csdn.net/postedit

更新as到3.0.1後 佈局檔案的Design無法預覽佈局,顯示空白

在網上找到個辦法:

修改res/values/styles.xml檔案中name=“AppTheme”的style,在Theme.AppCompat.Light.DarkActionBar前面新增Base.如下所示:

<resources> <!-- Base application theme. --> <style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> </resources>

就又能顯示佈局檔案了,記錄下這些騷操作