How to reduce the size of Progressdialog in android?

前端 未结 2 873
醉话见心
醉话见心 2020-12-10 20:10

I want the display the progress dialog like activity indicator as like in iPhone, So I want to reduce the size of it.

Could any one give me a idea on this.

相关标签:
2条回答
  • 2020-12-10 20:42

    Play with android progressBar style

    <ProgressBar android:layout_width="wrap_content" 
      android:layout_height="wrap_content"
      style="?android:attr/progressBarStyleSmall" <-- play with this
      android:layout_gravity="center"
    />
    

    EDIT:

    See this post, and example of progressbar created using code

    0 讨论(0)
  • 2020-12-10 21:05

    Try this way:

    mProgressDialog.setProgressStyle(android.R.attr.progressBarStyleSmall); 
    
    0 讨论(0)
提交回复
热议问题