|
|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.rehome.bhdxj.activity.sbxj;
|
|
|
|
|
|
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
|
import android.graphics.Color;
|
|
|
|
|
import android.util.Log;
|
|
|
|
|
import android.view.View;
|
|
|
|
|
import android.widget.Button;
|
|
|
|
|
@ -290,7 +291,14 @@ public class ScxsjhFragment extends BaseFragment {
|
|
|
|
|
sCData(json, zxidUpload);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
builder.show();
|
|
|
|
|
AlertDialog dialog = builder.create();
|
|
|
|
|
dialog.show();
|
|
|
|
|
//确定按钮
|
|
|
|
|
Button btnPos = dialog.getButton(DialogInterface.BUTTON_POSITIVE);
|
|
|
|
|
//取消按钮
|
|
|
|
|
Button btnNeg = dialog.getButton(DialogInterface.BUTTON_NEGATIVE);
|
|
|
|
|
btnPos.setTextColor(Color.BLACK);
|
|
|
|
|
btnNeg.setTextColor(Color.BLACK);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
sCData(json, zxidUpload);
|
|
|
|
|
@ -451,6 +459,13 @@ public class ScxsjhFragment extends BaseFragment {
|
|
|
|
|
adapter.notifyDataSetChanged();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
builder.show();
|
|
|
|
|
AlertDialog dialog = builder.create();
|
|
|
|
|
dialog.show();
|
|
|
|
|
//确定按钮
|
|
|
|
|
Button btnPos = dialog.getButton(DialogInterface.BUTTON_POSITIVE);
|
|
|
|
|
//取消按钮
|
|
|
|
|
Button btnNeg = dialog.getButton(DialogInterface.BUTTON_NEGATIVE);
|
|
|
|
|
btnPos.setTextColor(Color.BLACK);
|
|
|
|
|
btnNeg.setTextColor(Color.BLACK);
|
|
|
|
|
}
|
|
|
|
|
}
|