Android - 如何以编程方式定义 ShapeDrawables?

问题描述 投票:0回答:3

我想要实现的是使用内部有几个层的 Drawable,但在运行时控制一些值,例如渐变的 startColor 。这是我在 my_layered_shape.xml 中的内容:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
  <item>
    <shape android:shape="rectangle">
      <stroke android:width="1dp" android:color="#FF000000" />
      <solid android:color="#FFFFFFFF" />
    </shape>
  </item>
  <item android:top="1dp" android:bottom="1dp"> 
    <shape android:shape="rectangle">
    <stroke android:width="1dp" android:color="#FF000000" />
    <gradient
      android:startColor="#FFFFFFFF"
      android:centerColor="#FFFFFF88"
      android:endColor="#FFFFFFFF"
      android:gradientRadius="250"
      android:centerX="1"
      android:centerY="0"
      android:angle="315"
    />            
    </shape>
  </item>
</layer-list>

如果我使用 mMyImageView.setBackgroundResource(R.drawable.my_layered_shape) ,它就可以工作。 如果有必要的话,我不介意拆分 xml,或者只要有办法获取各种颜色值,就可以通过编程完成整个事情。我要以编程方式实现的概念(即,我最好在代码中执行与此 xml 相同的操作)是:

Drawable[] layers = new Drawable[2];

ShapeDrawable sd1 = new ShapeDrawable(new RectShape());
sd1.getPaint().setColor(0xFFFFFFFF);
sd1.getPaint().setStyle(Style.STROKE);
sd1.getPaint().setStrokeWidth(1);
// sd1.getPaint().somehow_set_stroke_color?

ShapeDrawable sd2 = new ShapeDrawable(new RectShape());
sd2.getPaint().setColor(0xFF000000);
sd2.getPaint().setStyle(Style.STROKE);
// sd2.getPaint().somehow_set_stroke_color?
// sd2.getPaint().somehow_set_gradient_params?

layers[0] = sd1;
layers[1] = sd2;
LayerDrawable composite = new LayerDrawable(layers);
mMyImageView.setBackgroundDrawable(composite);

谢谢。

android shapes
3个回答
26
投票

似乎不适用于 ShapeDrawable,但看看我的 GradientDrawable 示例:

GradientDrawable gd = new GradientDrawable(Orientation.BOTTOM_TOP, new int[]{Color.RED, Color.GREEN});
gd.setStroke(10, Color.BLUE);

您可能还需要以下方法:

gd.setGradientCenter(float x, float y);
gd.setGradientRadius(float gradientRadius);

5
投票

就把它留在这里...尚未测试

 /**
 * Created by Nedo on 09.04.2015.
 */
public class ShapeBuilder {

    public static Drawable generateSelectorFromDrawables(Drawable pressed, Drawable normal) {
        StateListDrawable states = new StateListDrawable();
        states.addState(new int[]{ -android.R.attr.state_focused, -android.R.attr.state_pressed, -android.R.attr.state_selected}, normal);
        states.addState(new int[]{ android.R.attr.state_pressed}, pressed);
        states.addState(new int[]{ android.R.attr.state_focused}, pressed);
        states.addState(new int[]{ android.R.attr.state_selected}, pressed);

        return states;
    }

    public static Drawable generateShape(String colorTop, String colorBot, String colorStroke, int stokeSize, float strokeRadius) {
        int top, bot, stroke;
        top = Color.parseColor(colorTop);
        bot = Color.parseColor(colorBot);
        stroke = Color.parseColor(colorStroke);

        GradientDrawable drawable = new GradientDrawable(GradientDrawable.Orientation.BOTTOM_TOP, new int[]{top, bot});
        drawable.setStroke(stokeSize, stroke);
        drawable.setCornerRadius(strokeRadius);

        return drawable;
    }

    public static Drawable buildSelectorShapeFromColors(String colorNormalStroke, String colorNormalBackTop, String colorNormalBackBot,
                                                        String colorPressedStroke, String colorPressedBackTop, String colorPressedBackBot,
                                                        int strokeSize, float strokeRadius) {

        Drawable pressed = generateShape(colorPressedBackTop, colorPressedBackBot, colorPressedStroke, strokeSize, strokeRadius);
        Drawable normal = generateShape(colorNormalBackTop, colorNormalBackBot, colorNormalStroke, strokeSize, strokeRadius);
        return generateSelectorFromDrawables(pressed, normal);
    }
}

编辑:现在测试,有一个错误。 你实际上必须描述每一个状态。如果您对状态进行分组,则只有当所有状态同时准确时才会触发它们......


0
投票

由 Nedo 于 2015 年 4 月 9 日创建。 */ 公共类 ShapeBuilder {

public static Drawable generateSelectorFromDrawables(Drawable pressed, Drawable normal) {
    StateListDrawable states = new StateListDrawable();
    states.addState(new int[]{ -android.R.attr.state_focused, -android.R.attr.state_pressed, -android.R.attr.state_selected}, normal);
    states.addState(new int[]{ android.R.attr.state_pressed}, pressed);
    states.addState(new int[]{ android.R.attr.state_focused}, pressed);
    states.addState(new int[]{ android.R.attr.state_selected}, pressed);

    return states;
}

public static Drawable generateShape(String colorTop, String colorBot, String colorStroke, int stokeSize, float strokeRadius) {
    int top, bot, stroke;
    top = Color.parseColor(colorTop);
    bot = Color.parseColor(colorBot);
    stroke = Color.parseColor(colorStroke);

    GradientDrawable drawable = new GradientDrawable(GradientDrawable.Orientation.BOTTOM_TOP, new int[]{top, bot});
    drawable.setStroke(stokeSize, stroke);
    drawable.setCornerRadius(strokeRadius);

    return drawable;
}

public static Drawable buildSelectorShapeFromColors(String colorNormalStroke, String colorNormalBackTop, String colorNormalBackBot,
                                                    String colorPressedStroke, String colorPressedBackTop, String colorPressedBackBot,
                                                    int strokeSize, float strokeRadius) {

    Drawable pressed = generateShape(colorPressedBackTop, colorPressedBackBot, colorPressedStroke, strokeSize, strokeRadius);
    Drawable normal = generateShape(colorNormalBackTop, colorNormalBackBot, colorNormalStroke, strokeSize, strokeRadius);
    return generateSelectorFromDrawables(pressed, normal);
}

} 编辑:现在测试,有一个错误。

© www.soinside.com 2019 - 2024. All rights reserved.