Android——进度条控制图片透明度

Posted Chen_s

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android——进度条控制图片透明度相关的知识,希望对你有一定的参考价值。

xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/chuanzhang"
        android:id="@+id/iv"
        />
    <SeekBar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/sbr" />

</LinearLayout>

java

package com.example.chenshuai.test322;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.ImageView;
import android.widget.SeekBar;

/**
 * Created by chenshuai on 2016/3/30.
 */
public class Tutou extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.touminggundonglayout);

        final ImageView imageView = (ImageView)findViewById(R.id.iv);

        final SeekBar sk_1 = (SeekBar)findViewById(R.id.sbr);

        sk_1.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
            @Override
            public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {

                imageView.setImageAlpha(progress);
            }

            @Override
            public void onStartTrackingTouch(SeekBar seekBar) {


            }

            @Override
            public void onStopTrackingTouch(SeekBar seekBar) {


            }
        });
    }
}

技术分享

以上是关于Android——进度条控制图片透明度的主要内容,如果未能解决你的问题,请参考以下文章

Android进度条控制图片旋转·平移·缩放·倾斜

修改进度条资源图片

html5 video 标签 怎样禁止拖动或者点击进度条

怎样用div实现带百分百环形进度条

VUE 超好看气泡进度条组件

Android实现View平移动画的方式