mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Indentation.
This commit is contained in:
@@ -71,21 +71,17 @@ public class Async
|
|||||||
stream = new java.net.URL(params[0]).openStream();
|
stream = new java.net.URL(params[0]).openStream();
|
||||||
Bitmap bmp = BitmapFactory.decodeStream(stream);
|
Bitmap bmp = BitmapFactory.decodeStream(stream);
|
||||||
return bmp;
|
return bmp;
|
||||||
}
|
} catch (MalformedURLException e) {
|
||||||
catch (MalformedURLException e) {
|
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return null;
|
return null;
|
||||||
}
|
} catch (IOException e) {
|
||||||
catch (IOException e) {
|
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return null;
|
return null;
|
||||||
}
|
} finally {
|
||||||
finally {
|
|
||||||
if (stream != null) {
|
if (stream != null) {
|
||||||
try {
|
try {
|
||||||
stream.close();
|
stream.close();
|
||||||
}
|
} catch (IOException e) {
|
||||||
catch (IOException e) {
|
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -113,8 +109,8 @@ public class Async
|
|||||||
Resources res = this.context.getResources();
|
Resources res = this.context.getResources();
|
||||||
int id = res.getIdentifier(name, "drawable", context.getPackageName());
|
int id = res.getIdentifier(name, "drawable", context.getPackageName());
|
||||||
|
|
||||||
if(id > 0) {
|
if (id > 0) {
|
||||||
BitmapDrawable result = (BitmapDrawable)res.getDrawable(id);
|
BitmapDrawable result = (BitmapDrawable) res.getDrawable(id);
|
||||||
return result.getBitmap();
|
return result.getBitmap();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -154,17 +150,17 @@ public class Async
|
|||||||
this.requestId = requestId;
|
this.requestId = requestId;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected Bitmap doInBackground(String... params) {
|
protected Bitmap doInBackground(String... params) {
|
||||||
String source = params[0];
|
String source = params[0];
|
||||||
byte[] bytes = Base64.decode(source, Base64.DEFAULT);
|
byte[] bytes = Base64.decode(source, Base64.DEFAULT);
|
||||||
return BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
|
return BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void onPostExecute(final Bitmap result) {
|
protected void onPostExecute(final Bitmap result) {
|
||||||
this.callback.onComplete(result, this.requestId);
|
this.callback.onComplete(result, this.requestId);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
public static class Http
|
public static class Http
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user