보통 원형 로딩의 색상 변경에 좋은 것 같다.
1. drawable에 다음과 같이 파일을 만든다.
progress.xml
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="360" >
<shape
android:innerRadiusRatio="3"
android:shape="ring"
android:thicknessRatio="8"
android:useLevel="false" >
<size
android:height="76dip"
android:width="76dip" />
<gradient
android:angle="0"
android:endColor="color/pink"
android:startColor="@android:color/transparent"
android:type="sweep"
android:useLevel="false" />
</shape>
</rotate>
2. 원하는 곳에 다음과 같은 프로그래스를 시전한다.
<ProgressBar
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/relativeLayout1"
android:layout_centerHorizontal="true"
android:layout_marginBottom="20dp"
android:indeterminate="true"
android:indeterminateDrawable="@drawable/progress" />
'안드로이드' 카테고리의 다른 글
안드로이드 딜레이 쉽게 구현 (0) | 2016.03.29 |
---|---|
메인 쓰레드에서 실행 시키기 (0) | 2016.03.29 |
안드로이드와 mysql을 php 통해 연결하기 (1) | 2016.03.11 |
Fab, Floating Action Button 원 색깔 변경 (0) | 2016.02.25 |
자바 정규 표현식에 해당되는 곳 찾기 (0) | 2016.02.23 |