Android Studio compatibility

This commit is contained in:
khanhduytran0
2020-04-11 15:05:51 +07:00
parent 4ed0897ed7
commit 80c8aa6945
63 changed files with 803 additions and 41 deletions

View File

@@ -1073,7 +1073,7 @@ public class AndroidGraphics2D extends Graphics2D {
mP = new Paint();
}
Paint.Style tmp = mP.getStyle();
mC.save(Canvas.CLIP_SAVE_FLAG);
mC.save(); // (CLIP_SAVE_FLAG);
mP.setStyle(Paint.Style.FILL);

View File

@@ -16,7 +16,7 @@ public class RefreshTokenTask extends AsyncTask<String, Void, Throwable> {
private Context ctx;
private ProgressDialog build;
@Override
public RefreshTokenTask(Context ctx, RefreshListener listener) {
this.ctx = ctx;
this.listener = listener;