android 애니메이션 불 러 오기 대화 상자 구현
먼저 효과 도 두 장 주세요.
사용자 정의 대화 상자:
public class LoadingProgressDialog extends ProgressDialog {
private AnimationDrawable mAnimation;
private Context mContext;
private ImageView mImageView;
private String mLoadingTitle;
private TextView mLoadingTv;
private int mResid;
public LoadingProgressDialog(Context context, String content, int id) {
super(context);
this.mContext = context;
this.mLoadingTitle = content;
this.mResid = id;
setCanceledOnTouchOutside(true);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
initView();
initData();
}
private void initData() {
mImageView.setBackgroundResource(mResid);
mAnimation = (AnimationDrawable) mImageView.getBackground();
mImageView.post(new Runnable() {
@Override
public void run() {
mAnimation.start();
}
});
mLoadingTv.setText(mLoadingTitle);
}
public void setContent(String str) {
mLoadingTv.setText(str);
}
private void initView() {
setContentView(R.layout.progress_dialog);
mLoadingTv = (TextView) findViewById(R.id.loadingTv);
mImageView = (ImageView) findViewById(R.id.loadingIv);
}
}
layot 폴 더 아래 progress 만 들 기dialog.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_gravity="center"
android:orientation="vertical">
<ImageView
android:id="@+id/loadingIv"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/loadingTv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:textSize="20sp" />
</LinearLayout>
res 폴 더 에 anim 폴 더 를 만 든 다음 프레임.xml 을 만 듭 니 다.애니메이션 은 한 장의 그림 으로 한 프레임 씩 재생 되 는데 그 안에 있 는 모든 아 이 템 은 한 장의 그림 이다.애니메이션 은 몇 프레임 이 있 는 지,몇 장의 그림 이 있 는 지,몇 개의 그림 이 있 는 지,몇 개의 아 이 템 이 있다.
<?xml version="1.0" encoding="utf-8"?>
<animation-list
xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item
android:drawable="@drawable/loading_01"
android:duration="100" />
<item
android:drawable="@drawable/loading_02"
android:duration="100" />
<item
android:drawable="@drawable/loading_03"
android:duration="100" />
<item
android:drawable="@drawable/loading_04"
android:duration="100" />
</animation-list>
사용법:
LoadingProgressDialog dialog =new LoadingProgressDialog(MainActivity.this, " ...",R.anim.frame);
//
dialog.show();
//
dialog.dismiss();
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.