상세 컨텐츠

본문 제목

[안드로이드] 색상조절막대 ColorSeekBar 쉽게 만드는 방법

안드로이드

by aries574 2022. 1. 23. 13:14

본문


이번 시간에는 SeekBar 라이브러리를

통해서 색상 조절을 쉽게 할 수 있는

방법을 알아보겠습니다.


목차

1. 실행 화면

2. 라이브러리 등록

3. 메인 화면 구성 activity_main.xml

4. 메인 코드 구현 MainActivity.java


1. 실행 화면

 

2. 라이브러리 등록

   build.gradle(Module:프로젝트명:app)

   dependencies 괄호 안에 아래 코드를 넣어주시면 됩니다.

implementation 'com.divyanshu.colorseekbar:colorseekbar:1.0.2'

 

3. 메인 화면 구성 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"
    android:id="@+id/main_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">


    <View
        android:id="@+id/view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/black" />

    <com.divyanshu.colorseekbar.ColorSeekBar
        android:id="@+id/color_seekbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:layout_margin="10dp"
        android:background="@color/white" />

</RelativeLayout>

 

4. 메인 코드 구현 MainActivity.java

public class MainActivity extends AppCompatActivity {

    View view;

    ColorSeekBar colorSeekBar;

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

        view = findViewById(R.id.view);

        colorSeekBar = findViewById(R.id.color_seekbar);

        colorSeekBar.setOnColorChangeListener(new ColorSeekBar.OnColorChangeListener() {
            @Override
            public void onColorChangeListener(int i) {

                view.setBackgroundColor(i);
            }
        });
    }
} //MainActivity

 

관련문서

https://github.com/rtugeek/ColorSeekBar

 

GitHub - rtugeek/ColorSeekBar: A colorful SeekBar for picking color

A colorful SeekBar for picking color. Contribute to rtugeek/ColorSeekBar development by creating an account on GitHub.

github.com

 

 

2020.12.16 - [안드로이드] - [안드로이드] SeekBar RGB 글씨 색상 조절 만들어보기

 

[안드로이드]SeekBar RGB 글씨 색상조절 만들어보기

2020/12/07 - [안드로이드] - [안드로이드] SeekBar 볼륨조절, 밝기조절 이번 시간에는 SeekBar를 통해 글씨색깔을 마음대로 변경할 수 있는 앱을 만들어보겠습니다. R, G, B를 조절할 수 있는 3개의 SeekBar

aries574.tistory.com

2020.06.05 - [안드로이드] - [안드로이드]탭(TAB) 선택 시 색상 지정 setTabTextColors

 

[안드로이드]탭(TAB) 선택시 색상지정 setTabTextColors

2020/06/01 - [안드로이드] - [안드로이드] List 만들어 보기 [RecyclerView, SQLiteOpenHelper, AlertDialog] 이 전에 올린 글에서 간단한 등록 및 리스트 화면을 만들어보았습니다. 화면은 탭을 사용해서 나누었..

aries574.tistory.com

2020.04.14 - [안드로이드] - [안드로이드] Background(백그라운드) 색상 등록 및 사용

 

[안드로이드] Background(백그라운드) 색상 등록 및 사용

안드로이드 뷰속성에 배경색상을 설정하는 옵션이 있다. 1. 직접 입력하기 android:layout_width="70dp" android:layout_height="70dp" android:background="#FF0000" android:orientation="vertical"> android:ba..

aries574.tistory.com

 

반응형

관련글 더보기

댓글 영역