<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="@android:color/transparent"
android:endColor="#88333333"
android:angle="90"/>
123456789
由文件可以看出,这是一个颜色渐变的过程,然后通过帧布局可以覆盖的特性来实现覆盖在底层布局上的阴影。
For Android 5.0, if you want to set it directly into a style use: 0dp and for Support library compatibility use: 0dp Example of style for a AppCompat light theme: 0dp Then apply this custom ActionBar style to you app theme: @st。在布局文件中添加 android:fitsSystemWindows="true"如下所示
<?xml version="1.0" encoding="utf-8"?>
android:orientation="vertical" android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:layout_height="match_parent">
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)