具有渐变和中间透明的Android形状边框

时间:2016-10-29 19:39:35

标签: android android-layout

我需要创建一个圆角边框,其中渐变边框。enter link description here正在工作。但我的页面使用图像作为背景,也是渐变。我需要从文件中间显示背景图像。我想创建如下图像:enter image description here

1 个答案:

答案 0 :(得分:1)

  

round_background.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
<stroke
    android:width="4dp"
    android:color="@color/transparent" />
    <gradient
        android:startColor="#374533"
        android:centerColor="#432727"
        android:endColor="#222430"
        android:angle="135"/>
    <corners android:radius="10dp" />
</shape>
  

round_border.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android">

<gradient
    android:startColor="#efe301"
    android:centerColor="#7dc17b"
    android:endColor="#01dae6"
    android:angle="180"/>
<corners android:radius="10dp" />

  

result_drawable.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

  <item android:drawable="@drawable/round_border"/>
  <item android:drawable="@drawable/round_background" />

</layer-list>

在这里,您可以在round_background.xml中设置android:width =“4dp”来设置边框的大小。使用结果result_drawable.xml你想要的地方.. 请享用。 :}