Android矩形形状有两种不同的颜色

时间:2016-09-30 07:26:22

标签: android xml shape

rectangle shape

如何通过使用带阴影的两种不同颜色来创建矩形形状?像上面的图像。

4 个答案:

答案 0 :(得分:6)

Please create a drawable file and put the below code in it.

    <?xml version="1.0" encoding="utf-8"?>
        <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
            <item>
                <shape android:shape="rectangle" >
                    <size android:height="20dp" />
                    <solid android:color="#F66D08" />
                </shape>
            </item>
            <item android:top="50dp">
                <shape android:shape="rectangle" >
                    <gradient android:endColor="#AD1B1D"
                        android:startColor="#E2360A"
                        android:angle="270" />
                </shape>
            </item>
        </layer-list>

答案 1 :(得分:5)

layer-list可用于解决此问题

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

    <item>
        <shape android:shape="rectangle">
            <size
                android:width="40dp"
                android:height="40dp" />
            <solid android:color="#F86F05" />
        </shape>
    </item>

    <item android:top="10dp">
        <shape android:shape="rectangle">
            <size
                android:width="30dp"
                android:height="30dp" />
            <solid android:color="#B31F19" />
        </shape>
    </item>

</layer-list>

同样的截图。

enter image description here

如果您想要渐变而不是纯色,请将实体更改为渐变并设置startColor,endColor和angle。

答案 2 :(得分:1)

enter image description here将这些代码放在您的activity_main中:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:gravity="center"
        android:background="#F66D08"
        android:layout_width="match_parent"
        android:layout_height="20dp">

    </LinearLayout>

    <LinearLayout
        android:background="@drawable/introslidergradiant"
        android:layout_width="match_parent"
        android:layout_height="100dp"></LinearLayout>
</LinearLayout>

使用introslidergradiant.xml名称创建drawble res文件:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape>
            <gradient
                android:angle="90"
                android:startColor="#A31720"
                android:endColor="#E1350B"
                android:type="linear" />
        </shape>
    </item>
</selector>

答案 3 :(得分:0)

您必须在drawable中创建一个xml文件

<shape xmlns:android="http://schemas.android.com/apk/res/android"    android:shape="rectangle" >
<gradient
android:type="linear"
android:startColor="#FFFF820D"
android:endColor="#FFA32815"
android:angle="90"/>
</shape>

使用以下代码,或者您可以生成自己的渐变here只需设置颜色并选择android选项,它将为您生成渐变。