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. 실행화면
[안드로이드] 액티비티(Activity) 뒤로가기 버튼 만들어보기 (0) | 2020.12.09 |
---|---|
[안드로이드]메뉴(Menu), 서브메뉴(Sub Menu) 만들어보기 (0) | 2020.12.08 |
[안드로이드] 내맘대로 Toast(메시지) 꾸미기 (0) | 2020.12.06 |
[안드로이드] 애니메이션 예제(배터리 충전구현) (0) | 2020.12.04 |
[안드로이드] 뒤로가기 다이얼로그창으로 나가기 (0) | 2020.12.03 |
댓글 영역