本文主要是介绍Android UI组件学习——SeekBar应用实例,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Android SeekBar应用实例
通过拖动滑块改变图片的透明度
该程的界面需要两个组件,一个ImageView用于显示图片,一个SeekBar用于动态改变图片的透明度
\layout\main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"><ImageViewandroid:layout_width="match_parent"android:layout_height="240dp"android:id="@+id/image4"android:src="@drawable/liqingz"/><SeekBarandroid:layout_width="match_parent"android:layout_height="wrap_content"android:id="@+id/seekbar"android:max="255"android:progress="255" />
</LinearLayout>
MainActivity.java
import android.app.Activity;
import android.os.Bundle;
import android.os.PersistableBundle;
import android.widget.ImageView;
import android.widget.SeekBar;import androidx.annotation.Nullable;public class MainActivity extends Activity {SeekBar seekBar;ImageView imageView;@Overridepublic void onCreate(@Nullable Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);imageView=findViewById(R.id.image4);seekBar=findViewById(R.id.seekbar);seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {@Overridepublic void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {//动态改变图片的透明度imageView.setImageAlpha(progress);}@Overridepublic void onStartTrackingTouch(SeekBar seekBar) {}@Overridepublic void onStopTrackingTouch(SeekBar seekBar) {}});}
}
效果展示
这篇关于Android UI组件学习——SeekBar应用实例的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!