大家好今天會示範簡單的SeekBar,那甚麼是SeekBar呢?在手機中我們應該最常用到的就是設定聲音的大小或是看影片時控制影片的進度條等等功能,那我們就開始示範吧!
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<SeekBar
android:id="@+id/seekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/seekbartext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/seekBar" />
</androidx.constraintlayout.widget.ConstraintLayout>
在上面的畫面中我只是先設定一個簡單的SeekBar,當然它也是可以有自定義的樣式的,不過今天不會示範。除了SeekBar以外我還設定了一個TextView,裡面的內容會在MainActivity裡設定。
package com.example.day30_seekbar;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.SeekBar;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
SeekBar mSeekbar;
TextView tvSeekBar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
init();
}
private void init() {
mSeekbar = findViewById(R.id.seekBar);
tvSeekBar = findViewById(R.id.seekbartext);
mSeekbar.setMax(100);
mSeekbar.setProgress(0);
tvSeekBar.setText("當前值是:"+mSeekbar.getProgress());
mSeekbar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
tvSeekBar.setText("當前值是:"+mSeekbar.getProgress());
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
Toast.makeText(MainActivity.this,"您觸碰了seekBar",Toast.LENGTH_SHORT).show();
}
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
Toast.makeText(MainActivity.this,"您鬆開了seekBar",Toast.LENGTH_SHORT).show();
}
});
}
}
由於SeekBar是繼承ProgressBar,所以我們可以使用ProgressBar的屬性。
接下來是介紹SeekBar的事件了,我們用到了三個事件:
那今天我們示範就到此為止了,謝謝大家的耐心的觀看,明天會示範自定義的seekBar。