天天看點

android5.0陰影,android 5.0之後toolbar陰影腫麼去除

For Android 5.0, if you want to set it directly into a style use:

item name=android:elevation0dp/item

and for Support library compatibility use:

item name=elevation0dp/item

Example of style for a AppCompat light theme:

style name=Theme.MyApp.ActionBar parent=style/Widget.AppCompat.Light.ActionBar.Solid.Inverse

!-- remove shadow below action bar --

!-- item name=android:elevation0dp/item --

!-- Support library compatibility --

item name=elevation0dp/item

/style

Then apply this custom ActionBar style to you app theme:

style name=Theme.MyApp parent=Theme.AppCompat.Light

item [email protected]/Theme.MyApp.ActionBar/item

/style

For pre 5.0 Android, add this too to your app theme:

!-- Remove shadow below action bar Android 5.0 --

item name=android:[email protected]/item

取消

評論