Android:如何以编程方式更改图层列表中的GradientDrawable的大小

时间:2016-10-18 09:34:18

标签: android resize android-5.0-lollipop layer-list onmeasure

我在文件layers.xml中有一个图层列表:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/outer_rect">
    <shape android:shape="rectangle">
        <stroke
                android:width="3dp"
                android:color="@color/gray4"/>
        <solid android:color="@color/white"/>
    </shape>
</item>
<item android:top="10dp" android:bottom="10dp" android:left="10dp" android:right="10dp"
      android:drawable="@drawable/dot_pattern_bitmap"/>
</layer-list>

这用于自定义的FrameLayout customView.xml:

<merge xmlns:android="http://schemas.android.com/apk/res/android">
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/layers"/>
</merge>

本身用于例如在

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="@dimen/space_m"
    android:orientation="vertical">

<my.namespace.customView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</FrameLayout>

此外,我有CustomView.java类来编辑customView(尤其是图层)的行为。

在那里,我试图根据customView的大小(以及参数&#39;比率&#39;)来更新图层列表的大小。我试过这样的话:

// ...
@Override
protected void onMeasure(final int widthMeasureSpec, final int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    layoutWidth = MeasureSpec.getSize(widthMeasureSpec);
    layoutHeight = MeasureSpec.getSize(heightMeasureSpec);

    readjustSize(ratio);
}

private void readjustSize(final double ratio) {
    if (layoutHeight != 0 && layoutWidth != 0) {
        // determine desired width and height using the layout width
        int desiredWidth = layoutWidth;
        int desiredHeight = (int) (layoutWidth / ratio);

        // if it does not fit, adjust using the layout height
        if (desiredHeight > layoutHeight) {
            desiredHeight = layoutHeight;
            desiredWidth = (int) (layoutHeight * ratio);
        }

        // get the basic layer
        final LayerDrawable ld =
            (LayerDrawable) ContextCompat.getDrawable(getContext(), R.layers);
        final GradientDrawable outerRectShape =
            (GradientDrawable) ld.findDrawableByLayerId(R.id.outer_rect);

        // and adapt the size
        outerRectShape.setSize(desiredWidth, desiredHeight);
        outerRectShape.setBounds(0, 0, desiredWidth, desiredHeight);

        // redraw
        invalidate();
        requestLayout();
    }
}

所以,这是很多代码......不幸的是,这不能正常工作。如果第一次加载框架布局,我只能看到一个非常小的矩形。

只有当我来回切换到此视图时,才会按照我的意愿应用大小:

有人有想法吗?

1 个答案:

答案 0 :(得分:0)

最后,我自己找到了答案。 :) 实际上,这很简单。当我通过

获取图层可绘制时
final LayerDrawable ld =
    (LayerDrawable) ContextCompat.getDrawable(getContext(), R.layers);

我只获得了一般的资源,而不是我绘制的图像的具体src。当我将代码改编为

final View root = inflate(getContext(), R.layout.custom_view, this);
final ImageView imageView = (ImageView) root.findViewById(R.id.layers);
final LayerDrawable ld = (LayerDrawable) imageView.getDrawable();

在CustomView初始化中,并为ImageView提供id“layers”,它按预期工作。

另外,我不得不改变onMeasure中调用方法的顺序:

@Override
protected void onMeasure(final int widthMeasureSpec, final int heightMeasureSpec) {
    layoutWidth = MeasureSpec.getSize(widthMeasureSpec);
    layoutHeight = MeasureSpec.getSize(heightMeasureSpec);

    readjustSize(ratio);

    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
} 

编辑:此功能仅适用于Android版本&gt; = 6.0。对于旧版本,我仍然遇到与问题中描述的问题相同的问题。