안드로이드 개발 질문/답변
(글 수 45,052)
프로그레스 다이얼로그 띄울 시 배경 없이 그냥 동그라미만 띄우고 싶은데,
자료를 찾아보니 progress dialog를 custom으로 구현하는 자료는 별로 없는것 같습니다.
혹시 이에 대해 아시거나 관련자료가 혹 있을까요,
anim등에 이미지 파일을 부여해 dialog를 띄워주는 식으로 해야할까요,
아시는분 답변좀 부탁드립니다 꾸벅
자료를 찾아보니 progress dialog를 custom으로 구현하는 자료는 별로 없는것 같습니다.
혹시 이에 대해 아시거나 관련자료가 혹 있을까요,
anim등에 이미지 파일을 부여해 dialog를 띄워주는 식으로 해야할까요,
아시는분 답변좀 부탁드립니다 꾸벅
2010.11.30 10:37:54
센스있으시네요~ ImageView에 Animation 지정해서 하시면 됩니다.
아래 Animation 적용하시면 되요
<?xml version="1.0" encoding="UTF-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="true"
android:interpolator="@android:anim/linear_interpolator"
android:oneshot="false">
<!-- Rotate counter-clockwise with linear interpolator -->
<rotate
android:fromDegrees="0"
android:toDegrees="-360"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:duration="2000">
</rotate>
</set>



