Androidアニメーションの読み込みを実現します。
この例では、動画ダイアログのロードを実現するためのandroidの具体的なコードを共有します。参考にしてください。具体的な内容は以下の通りです。
まず効果図を2枚ください。
カスタムダイアログ:
アニメーションは1枚のピクチャーから1フレームごとに放送したので、中のすべてのitemは1枚のピクチャーで、アニメーションはいくつのフレームがあって、どれだけのピクチャーがあって、どれだけのピクチャーがありますか?
まず効果図を2枚ください。
カスタムダイアログ:
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);
}
}
ラyoutフォルダの下でプログレスを作成します。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フォルダを作成し、中にframe.xmlを作成します。アニメーションは1枚のピクチャーから1フレームごとに放送したので、中のすべてのitemは1枚のピクチャーで、アニメーションはいくつのフレームがあって、どれだけのピクチャーがあって、どれだけのピクチャーがありますか?
<?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();
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。