3

我知道可以制作一个看起来像这样的形状: 在此处输入图像描述

但我不知道如何开始。我可以把它做成一个形状吗?还是我必须做其他事情?

BR

4

4 回答 4

5

哦,看,我错了 - 渐变不是问题:

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.LinearGradient;
import android.graphics.Paint;
import android.graphics.Rect;
import android.graphics.RectF;
import android.graphics.Shader;
import android.view.View;

public class ButtonShadow extends View {

    public ButtonShadow(Context context)
    {
        super(context);
    }

    @Override
    public void onDraw(Canvas canvas)
    {
        RectF space = new RectF(this.getLeft(), this.getTop(), this.getRight(), this.getBottom());

        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);

        paint.setShader(new LinearGradient(0, getWidth(), 0, 0, Color.BLACK, Color.WHITE, Shader.TileMode.MIRROR));

        canvas.drawArc(space, 180, 360, true, paint);

        Rect rect = new Rect(this.getLeft(),this.getTop() + (this.getHeight() / 2),this.getRight(),this.getBottom());
        canvas.drawRect(rect, paint);
    }
}

有关渐变填充的更多信息,请参见此处:如何使用线性渐变填充 Android 中的路径?

于 2012-08-02T14:03:30.607 回答
4

有关详细信息,请参阅此文档,您需要使用Layer List

这是根据您的图像的代码:

custom_layer_list.xml

<layer-list
    xmlns:android="http://schemas.android.com/apk/res/android" >
    <item
        android:drawable="@drawable/topCircular" />

    <item
        android:drawable="@drawable/rect"
        android:top="20dp" />
</layer-list>

topCircular.xml

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

<solid
    android:color="#000000" />
<corners
    android:topLeftRadius="25dp"
    android:topRightRadius= "25dp" />

</shape>

矩形.xml

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

<solid
    android:color="#000000" />

</shape>
于 2012-08-02T13:53:04.830 回答
1

您可以在 shape 文件中的 xml 中定义它,但制作一个简单的 9 补丁图形可能要容易得多,然后您可以轻松自定义弯曲和直线段的拉伸方式和位置。

有关更多信息,请参阅http://developer.android.com/tools/help/draw9patch.html

编辑

有关形状的更多信息,请参见此处:http: //developer.android.com/guide/topics/resources/drawable-resource.html#Shape

于 2012-08-02T13:17:36.810 回答
1

你只能用形状来做到这一点:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="#000000" />
    <padding android:left="7dp"
        android:top="7dp"
        android:right="7dp"
        android:bottom="7dp" />
    <corners  
        android:topLeftRadius="90dip"
        android:topRightRadius="90dip"
        android:bottomLeftRadius="0dip"
        android:bottomRightRadius="0dip" />
</shape>
于 2012-08-10T15:36:27.993 回答