[Android] ProgressBar

DoooongDong·2022년 4월 2일
0

Android Kotlin

목록 보기
10/11

ProgressBar란?

ProgressBar는 작업의 진행 정도를 표시하거나 작업이 진행 중임을 사용자에게 알려주는 수단 중 하나 입니다. ProgressBar는 두 가지 형태가 존재합니다.

  • 막대모양 : 작업의 진행 정도를 알려주는 막대모양으로 표시합니다.
<ProgressBar
            android:id="@+id/progressBar"
            style="@style/Widget.AppCompat.ProgressBar.Horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:progress="40" /> <!--진행정도를 나타냄-->

  • 원 모양 : 작업이 진행 중임을 알려준다. 원 모양으로 된 ProgressBar가 반복적으로 표시됩니다.
<ProgressBar
            android:id="@+id/progressBar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center" />

profile
꺾이지 말자 :)

0개의 댓글