我已经通过代码定义了一个LayerDrawable,其中包含一些项目,但是我不知道如何设置“ imagen”所具有的LayerDrawable内部每一层的可见性。这是我的代码:

公共类layerExample扩展Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    ImageView imagen = (ImageView)findViewById(R.id.image);

    Resources r = getResources();
    Drawable[] capas = new Drawable[3];

    capas[0] = r.getDrawable(R.drawable.icon);
    capas[1] = r.getDrawable(R.drawable.icon2);
    capas[2] = r.getDrawable(R.drawable.icon3);

    LayerDrawable capasDrawable = new LayerDrawable(capas);
    imagen.setImageDrawable(capasDrawable);

最佳答案

您可以拨打

<drawable object>.setAlpha(int i)


i:0表示完全透明,255表示完全不透明

10-08 17:45