상세 컨텐츠

본문 제목

[안드로이드] SeekBar 볼륨조절, 밝기조절

안드로이드

by aries574 2020. 12. 7. 20:00

본문


2020/12/06 - [안드로이드] - [안드로이드] 내맘대로 Toast(메시지) 꾸미기

이번시간에는 SeekBar에 대해 알아보겠습니다. 

볼륨조절이나 화면밝기 조절할때 나오는 그게 바로 SeekBar입니다. 

내 맘대로 앞으로 뒤로 움직이면 숫자가 변하면서 상태가 변하죠. 

간단하게 SeekBar를 움직이면 그 움직인만큼의 상태값을 텍스트뷰에 뿌려보도록 하겠습니다.


1. 화면구현(activity_main.xml)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">

<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0%"
android:textSize="30sp"
android:layout_above="@id/seekBar"
android:layout_centerHorizontal="true"
android:layout_marginBottom="24dp"/>


<SeekBar
android:id="@+id/seekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignParentStart="true"/>
</RelativeLayout>


2. 기능구현(MainActivity.java)

onProgressChanged : SeekBar의 상태가 바뀌면 그 상태값을 TextView에 값으로 넣었습니다.

import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.SeekBar;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

TextView textView;
SeekBar seekBar;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

textView = findViewById(R.id.textView);
seekBar = findViewById(R.id.seekBar);


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

textView.setText("" + progress + "%");
}

@Override
public void onStartTrackingTouch(SeekBar seekBar) {

}

@Override
public void onStopTrackingTouch(SeekBar seekBar) {

}
});
}
}


3. 실행화면



반응형

관련글 더보기

댓글 영역