Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- SSL
- table
- SQL
- 공정능력
- GIT
- tomcat
- SPC
- R
- Android
- Java
- JavaScript
- MSSQL
- Kotlin
- xPlatform
- Python
- Sqoop
- Spring
- plugin
- IntelliJ
- mapreduce
- vaadin
- es6
- mybatis
- 보조정렬
- window
- Express
- Eclipse
- NPM
- react
- hadoop
Archives
- Today
- Total
DBILITY
안드로이드 RatingBar 사용법 본문
반응형
package com.example.myex01
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import com.example.myex01.databinding.ActivityMain4Binding
class MainActivity4 : AppCompatActivity() {
private val binding by lazy {
ActivityMain4Binding.inflate(layoutInflater)
}
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(binding.root)
var ratingDefault = 2.5f
binding.run {
textRating.text = ratingDefault.toString()
ratingBar.apply {
numStars = 5
stepSize = 0.5f
rating = ratingDefault
setOnRatingBarChangeListener { _, rating, fromUser ->
textRating.text = if(fromUser) rating.toString() else "0.0"
}
}
}
}
}
반응형
'android > kotlin' 카테고리의 다른 글
안드로이드 enableEdgeToEdge,setOnApplyWindowInsetsListener (0) | 2024.03.05 |
---|---|
안드로이드 spinner(combo) 사용법 (0) | 2024.03.04 |
안드로이드 seekbar 사용법 (0) | 2024.02.28 |
안드로이드 checkbox,toggle,switch 간단 사용법 (0) | 2024.02.28 |
안드로이드 activity 간 데이터 보내고 받기 (0) | 2024.02.22 |
Comments