2

私は今持っていてほとんど見えないものを変更したい: ここに画像の説明を入力 これに: ここに画像の説明を入力

これは、テキスト、タイトル、背景のないカスタマイズされた進行状況ダイアログです。スピナーのみです。

この実装を進行状況ダイアログに使用しました:

public class IndeterminateProgressSpinner extends Dialog {
static Dialog dialog;

public static IndeterminateProgressSpinner show(Context context,
        OnCancelListener cancelListener) {
    dialog = new IndeterminateProgressSpinner(context);
    dialog.setTitle(null);
    dialog.setCancelable(false);
    dialog.setOnCancelListener(cancelListener);
    /* The next line will add the ProgressBar to the dialog. */
    ProgressBar pb = new ProgressBar(context);
    dialog.addContentView(pb, new LayoutParams(LayoutParams.WRAP_CONTENT,
            LayoutParams.WRAP_CONTENT));
    dialog.show();
    return (IndeterminateProgressSpinner) dialog;
}

public IndeterminateProgressSpinner(Context context) {
    super(context, R.style.indeterminateProgressSpinner);
}

そしてこれがスタイルR.style.indeterminateProgressSpinner

    <style name="indeterminateProgressSpinner">
    <item name="android:windowFrame">@null</item>
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:windowIsFloating">true</item>
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowTitleStyle">@null</item>
    <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
    <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
    <item name="android:backgroundDimEnabled">false</item>
    <item name="android:background">@android:color/transparent</item>
    <item name="android:indeterminateOnly">true</item>
    </style>

ありがとうございました

4

0 に答える 0