Devahoy Logo
PublishedAt

Android

Day 12 - Circular Progress Button

Day 12 - Circular Progress Button

สวัสดีครับ บทความนี้เป็นบทความที่ 12 แล้วนะครับ ที่ผมจะมาเขียน ในซีรีย์ Learn 30 Android Libraries in 30 days

สำหรับบทความทั้งหมด อ่านได้จากด้านล่างครับ

สำหรับวันนี้ขอนำเสนอเรื่อง Circular Progress Button ครับ

Circular Progress Button คืออะไร?

Circular Progress Button เป็น Library ที่เอาไว้ปรับแต่งให้โดยใส่ Progress ให้กับ Button เหมือนกับการเอา ProgressBar มารวมกับ Button ตัวอย่าง ก็แบบรูปข้างล่างเลยครับ

Circular Demo

สำหรับ Library อันนี้ การใช้งานง่ายมากๆครับ เริ่มด้วย

Installation

ขั้นตอนการติดตั้ง เปิด build.gradle จากนั้นก็เพิ่ม dependencies ข้างล้างนี้ลงไป

1
dependencies {
2
compile 'com.github.dmytrodanylyk.circular-progress-button:library:1.0.5'
3
}

Circular Progress Button ใช้ MinSDK 14 เพราะฉะนั้นในโปรเจ็คของเรา ต้องตั้งอย่างน้อย 14 นะครับ

Layout

ตัว Circular Progress Button ในไฟล์ Layout จะใช้ View ชื่อ com.dd.CircularProgressButton แบบนี้นะครับ

1
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2
xmlns:app="http://schemas.android.com/apk/res-auto"
3
android:orientation="vertical"
4
android:layout_width="match_parent"
5
android:layout_height="match_parent">
6
<com.dd.CircularProgressButton
7
android:id="@+id/circular_button"
8
android:layout_width="196dp"
9
android:layout_height="64dp"
10
android:layout_marginTop="16dp"
11
android:textColor="@color/white"
12
android:textSize="18sp"
13
android:layout_gravity="center_horizontal"
14
app:cpb_textComplete="@string/complete"
15
app:cpb_textError="@string/error"
16
app:cpb_textIdle="@string/upload" />
17
18
</LinearLayout>
  • cpb_textComplete : คือข้อความที่ต้องการ เมื่อ Progress Complete
  • cpb_textError : ใส่ข้อความที่ต้องการ หาก Progress Error
  • cpb_textIdle : ใส่ข้อความเริ่มต้นให้กับ Button

สำหรับไฟล์ res/values/strings.xml เพิ่ม String ไป 3 ชื่อ ดังนี้ครับ

1
<resources>
2
<string name="complete">Completed</string>
3
<string name="error">Error!</string>
4
<string name="upload">Upload</string>
5
</resources>

Progress

ตัว Circular Progress Button จะแบ่ง State ออกเป็น 4 ส่วนคือ

  1. Normal State (มีค่าเป็น 0)

Progress 0

  1. Progress State (มีค่าตั้งแต่ 1 - 99)

Progress 50

  1. Success State (มีค่า 100)

Progress 100

  1. Error State (มีค่า -1)

Error

Custom

เราสามารถปรับแต่ง หน้าตาของ Button เพิ่มเติมได้ เช่น

  • rounded corner ให้กับ Button
1
app:cpb_cornerRadius="48dp"

Rounded

  • ใส่ icon ให้กับ Button ได้ โดยมี 2 state คือ iconComplete และ iconError
1
app:cpb_iconComplete="@drawable/ic_action_accept"

Complete

1
app:cpb_iconError="@drawable/ic_action_cancel"

Error

Usage

การใช้งาน ง่ายๆเลยครับ ทำการ binding View จากไฟล์ xml ก่อน ไฟล์ xml

1
<?xml version="1.0" encoding="utf-8"?>
2
3
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4
xmlns:app="http://schemas.android.com/apk/res-auto"
5
android:orientation="vertical"
6
android:gravity="center"
7
android:layout_width="match_parent"
8
android:layout_height="match_parent">
9
10
<com.dd.CircularProgressButton
11
android:id="@+id/circular_button_simple"
12
android:layout_width="196dp"
13
android:layout_height="64dp"
14
android:layout_marginTop="16dp"
15
android:textColor="@color/white"
16
android:textSize="18sp"
17
app:cpb_textComplete="@string/complete"
18
app:cpb_textError="@string/error"
19
app:cpb_textIdle="@string/upload" />
20
21
</LinearLayout>

ส่วนคลาส จาวา เป็นแบบนี้

1
public class CircularActivity extends ActionBarActivity {
2
CircularProgressButton mCircularButtonSimple
3
4
@Override
5
protected void onCreate(Bundle savedInstanceState) {
6
super.onCreate(savedInstanceState);
7
setContentView(R.layout.day12_activity_circular);
8
9
mCircularButtonSimple = (CircularProgressButton)
10
findViewById(R.id.circular_button_simple);
11
}
12
}

แล้วก็ setProgress() ให้กับ CircularProgressButton แบบนี้

1
mCircularButtonSimple.setProgress(50);

อันนี้คือตัวอย่าง โดยใช้ onClickListener เมื่อเวลา คลิก Button Progress ก็จะถูก set ค่าเป็น 50 ถ้ากดอีกที ก็จะเป็น 100 จะแสดง textComplete

1
mCircularButtonSimple.setOnClickListener(new View.OnClickListener() {
2
@Override
3
public void onClick(View v) {
4
if (mCircularButtonSimple.getProgress() == 0) {
5
mCircularButtonSimple.setProgress(50);
6
} else if (mCircularButtonSimple.getProgress() == 100) {
7
mCircularButtonSimple.setProgress(0);
8
} else {
9
mCircularButtonSimple.setProgress(100);
10
}
11
}
12
});

แล้วมันเอาไปใช้ทำอะไรได้ละ เราต้องมา setprogress ให้มันเอง แล้วมันจะมีประโยชน์อะไร? จริงๆ มันเอาไปใช้ร่วมกับ AsyncTask เวลาอัพโหลดหรือดาวน์โหลดไฟล์ก็ได้ครับ โดย implement ในส่วน doInBackground() แล้วก็คำนวณ ขนาดไฟล์ หรืออะไรก็ว่าไปครับ ในส่วนนี้ไม่ได้ทำตัวอย่างให้ดูนะครับ พอดีไม่มีเวลาเขียนเท่าไหร่ เดี๋ยวถ้ามีเวลาว่าง จะมาแก้ไขโพสนี้ โดยเพิ่มตัวอย่างการใช้งานจริงไปด้วย

ลองเอาไปเล่นกันดูนะครับ ส่วนรายละเอียดเพิ่มเติมก็อ่านจาก User Guide ได้เลย :D

สุดท้าย Source Code ทั้งหมด ก็อยู่ที่ Github ครับ

Reference

  • Circular Progress Button - รูปตัวอย่างทั้งหมด เอามาจากต้นฉบับครับ
Authors
avatar

Chai Phonbopit

เป็น Web Dev ในบริษัทแห่งหนึ่ง ทำงานมา 10 ปีกว่าๆ ด้วยภาษาและเทคโนโลยี เช่น JavaScript, Node.js, React, Vue และปัจจุบันกำลังสนใจในเรื่องของ Blockchain และ Crypto กำลังหัดเรียนภาษา Rust

Related Posts