0

我设置了一个搜索栏,用于调整图像的透明度。

我还有两个九个补丁图像(一个只是另一个的透明版本)。

我想做的是让搜索栏进度设置一个可绘制对象和另一个可绘制对象之间的过渡量。这可能吗?我该怎么办?

@Override
    public void onProgressChanged(SeekBar seekBar, int progress,
            boolean fromUser) {

//Set percentage of transition between image1 and image2 equal to progress here.

    }
4

1 回答 1

0
image1.setAlpha(progress);
Image2.setAlpha(100-progress);

随着一个变得更加透明,另一个变得更加不透明。

于 2012-11-12T09:04:14.393 回答