728x90
반응형
- 라이브러리 추가하기
dependencies {
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
}
- 새로고침이 필요한 레이아웃 감싸기
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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">
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
- 새로고침 리스너 달기, 데이터 세팅하기, 새로고침 완료 세팅하기
class MainActivity : AppCompatActivity() {
var count: Int = 0
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val textView = findViewById<TextView>(R.id.text)
val refresh = findViewById<SwipeRefreshLayout>(R.id.refresh)
refresh.setOnRefreshListener {
refresh.postDelayed({
textView.text = "refresh ${count++}"
refresh.isRefreshing = false
}, 2000)
}
}
}
- 테스트 동영상
반응형
'Development > Android' 카테고리의 다른 글
[android] 유튜브 백그라운드 재생 정책위반 (0) | 2021.04.05 |
---|---|
[android] 다른앱 위에 뷰(floating view) 띄우기 (0) | 2021.04.01 |
[android] ConstraintLayout chainStyle 활용하기 (packed) (0) | 2021.03.19 |
[android] Retrofit2 과 retryWhen 를 조합하여 어떻게 사용할까? (0) | 2021.03.19 |
[android] onTouch 사용 시 ClickableViewAccessibility 주의 (0) | 2021.03.08 |
댓글