android progress circle 예제

XML 레이아웃에서..

<!-- progress circle -->

<FrameLayout 

android:layout_width="fill_parent"

  android:layout_height="fill_parent" 

android:orientation="vertical"

      >

   <ProgressBar android:id="@+android:id/progress_circle"

       style="?android:attr/progressBarStyle"

       android:layout_width="wrap_content"

       android:layout_height="wrap_content"

       android:layout_gravity="center"

       />

</FrameLayout>



      <위 레이아웃 소스에서 대체 가능한 progress circle style 종류>

아래는 순서대로 보통, 보통반전, 크게, 크게반전, 작게, 작게 반전, 타이틀용


       style="?android:attr/progressBarStyle"

       style="?android:attr/progressBarInverse"

       style="?android:attr/progressBarLarge"

       style="?android:attr/progressBarLargeInverse"

       style="?android:attr/progressBarStyleSmall"

       style="?android:attr/progressBarStyleSmallInverse"

       style="?android:attr/progressBarStyleSmallTitle"



       < 만약 레이아웃이 아니라 소스에서 style을 구현하기 원한다면 >

        android ? style은 android.R.attr.xxxxxx 로 바꾸면 된다.

       ProgressBar mProgress_circle = new ProgressBar(this,  null, android.R.attr.progressBarStyle);


+ Recent posts