我设置了一个搜索栏,用于调整图像的透明度。
我还有两个九个补丁图像(一个只是另一个的透明版本)。
我想要做的是将搜索栏进度设置为一个drawable和另一个drawable之间的过渡量。这可能吗?我该怎么做呢?
@Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
//Set percentage of transition between image1 and image2 equal to progress here.
}
答案 0 :(得分:0)
image1.setAlpha(progress);
Image2.setAlpha(100-progress);
当一个人变得更透明时,另一个变得更加不透明。