Skip to content
Snippets Groups Projects
Commit 56bbd11c authored by Maxime Graulich's avatar Maxime Graulich
Browse files

add Google play link

parent d8cd9ca9
No related branches found
No related tags found
No related merge requests found
...@@ -35,10 +35,11 @@ class Model { ...@@ -35,10 +35,11 @@ class Model {
} }
public void setBitmap(File f) { public void setBitmap(File f) {
BitmapFactory.Options options = new BitmapFactory.Options(); BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 8;
options.inJustDecodeBounds = false; options.inJustDecodeBounds = false;
options.inPreferredConfig = Bitmap.Config.RGB_565; options.inPreferredConfig = Bitmap.Config.RGB_565;
options.inDither = true; options.inDither = true;
_bitmap = BitmapFactory.decodeFile(f.toString(),options); _bitmap = BitmapFactory.decodeFile(f.toString(), options);
} }
public void setUrl(Uri url) { public void setUrl(Uri url) {
_url = url; _url = url;
......
...@@ -37,4 +37,4 @@ https://itunes.apple.com/us/app/onelab/id845930897 ...@@ -37,4 +37,4 @@ https://itunes.apple.com/us/app/onelab/id845930897
Google Play link: Google Play link:
Coming soon! https://play.google.com/store/apps/details?id=org.geuz.onelab
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment