Android custom progress bar with .gif file

后端 未结 6 1899
执念已碎
执念已碎 2020-12-20 04:05

In my app i have a custom progress bar

progress.xml

 

        
6条回答
  •  [愿得一人]
    2020-12-20 04:53

    Android progress dialog with gif

    public class CustomProgressDialog extends AlertDialog {
    public CustomProgressDialog(Context context) {
        super(context);
        getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
    }
    
    @Override
    public void show() {
        super.show();
        setContentView(R.layout.custom_progress_dialog);
     }
    }
    

    for more info http://www.androidcoding.in/2017/11/14/android-custom-progressbar/

提交回复
热议问题