解決Android Studio Design界面不顯示layout控件的問題
Android Studio更新到3.1.3后,發(fā)現(xiàn)拖到Design中的控件在預(yù)覽界面中不顯示;
解決辦法:
在Styles.xml中的parent='...'中的Theme前添加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>
補充知識:AndroidStudio XML文件之style標(biāo)簽詳解
前言:
Android的樣式一般定義在res/values/styles.xml文件中,其中有一個根元素resource,樣式通過嵌套子標(biāo)簽style來完成,style可以嵌套多個item標(biāo)簽來設(shè)置不同的屬性,從而提高復(fù)用率。
什么是Style:
style是一個標(biāo)簽,該標(biāo)簽里可以嵌套多個item子標(biāo)簽,通過item標(biāo)簽的name設(shè)置不同的屬性,多個item組合起來就是一個style樣式
示例:
<style name='DefaultProgressDialog' parent='android:style/Theme.Dialog' > <item name='android:windowFrame'>@null</item> <item name='android:windowNoTitle'>true</item> <item name='android:windowBackground'>@android:color/transparent</item> <item name='android:windowIsFloating'>true</item> <item name='android:windowContentOverlay'>@null</item> </style>
Style標(biāo)簽里面的屬性:
name='XXX' 定義該style樣式的name名稱
parent='XXX' 可以繼承自哪一個Style標(biāo)簽,繼承以后可對父標(biāo)簽已經(jīng)有的屬性進行重寫
Style標(biāo)簽里可以嵌套的標(biāo)簽:
item標(biāo)簽的屬性:
name='XXX' name里面的值可以為任意字符串,對應(yīng)的是某一個view的屬性值(如果要引用的view不存在這個屬性,默認為這個屬性無效(忽略這個屬性),并不會報錯)
自定義控件里面的屬性值怎么在style的item標(biāo)簽里聲明:
在主工程的時候要加上包名:
<style name='navigationbar_radiogroup_style'> <item name='com.mobeta.android.dslv.view:drawableSize'>@dimen/dp20</item> </style>
在module或其他類庫的話,什么都不用加:
<style name='navigationbar_radiogroup_style'> <item name='drawableSize'>@dimen/dp20</item> </style>
常用item屬性:
窗口進出動畫設(shè)置:
<style name='WheelSelect' parent='@android:style/Animation'> <item name='android:windowEnterAnimation'>@anim/wheel_select_enter</item> <item name='android:windowExitAnimation'>@anim/wheel_select_exit</item> </style>
設(shè)置Dialog的屬性:
<style name='DefaultProgressDialog' parent='android:style/Theme.Dialog'> <item name='android:windowFrame'>@null</item> <item name='android:windowNoTitle'>true</item> <item name='android:windowBackground'>@android:color/transparent</item> <item name='android:windowIsFloating'>true</item> <item name='android:windowContentOverlay'>@null</item> </style>
各屬性顏色的位置
1.colorPrimary 應(yīng)用的主要色調(diào),actionBar默認使用該顏色,Toolbar導(dǎo)航欄的底色2.colorPrimaryDark 應(yīng)用的主要暗色調(diào),statusBarColor默認使用該顏色3.statusBarColor 狀態(tài)欄顏色,默認使用colorPrimaryDark4.windowBackground 窗口背景顏色5.navigationBarColor 底部欄顏色6.colorForeground 應(yīng)用的前景色,ListView的分割線,switch滑動區(qū)默認使用該顏色7.colorBackground 應(yīng)用的背景色,popMenu的背景默認使用該顏色8.colorAccent CheckBox,RadioButton,SwitchCompat等一般控件的選中效果默認采用該顏色9.colorControlNormal CheckBox,RadioButton,SwitchCompat等默認狀態(tài)的顏色。10.colorControlHighlight 控件按壓時的色調(diào)11.colorControlActivated 控件選中時的顏色,默認使用colorAccent12.colorButtonNormal 默認按鈕的背景顏色13.editTextColor 默認EditView輸入框字體的顏色。14.textColor Button,textView的文字顏色15.textColorPrimary DisableOnly RadioButton checkbox等控件的文字16.textColorPrimary 應(yīng)用的主要文字顏色,actionBar的標(biāo)題文字默認使用該顏色17.colorSwitchThumbNormal: switch thumbs 默認狀態(tài)的顏色. (switch off)
以上這篇解決Android Studio Design界面不顯示layout控件的問題就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. ASP.NET MVC限制同一個IP地址單位時間間隔內(nèi)的請求次數(shù)2. XMLDOM對象方法:對象屬性3. 使用IDEA編寫jsp時EL表達式不起作用的問題及解決方法4. jsp實現(xiàn)textarea中的文字保存換行空格存到數(shù)據(jù)庫的方法5. ASP.NET Identity的基本用法6. 解決ajax的delete、put方法接收不到參數(shù)的問題方法7. 原生Ajax之全面了解xhr的概念與使用8. Python Django搭建網(wǎng)站流程圖解9. python subprocess pipe 實時輸出日志的操作10. Spring boot使用logback實現(xiàn)日志管理過程詳解
