どのデバイスでも、progressDarの中にprogressBarの位置が異なります。だから私はそれをカスタマイズする必要があります。カスタムprogressDialogの作成方法
私はこのようにしてみてください:この進捗ダイアログがダイアログなしでのみプログレスバーが表示さ
public class CustomProgressDialog extends ProgressDialog {
public CustomProgressDialog(Context context) {
super(context);
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.progress_fragment_dialog);
}
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar
android:layout_width="wrap_content"
android:layout_gravity="center"
android:background="@color/colorPrimary"
android:layout_height="match_parent"
android:id="@+id/progressBar" />
</LinearLayout>
。しかし、私もダイアログが必要です。
http://islandofatlas.net/2014/03/29/android-custom-progress-dialog.html Iことを、あなたが意味するか、このリンク –