Tagged Questions
0
votes
0answers
18 views
Scaling to screen size, editing image and exporting with it's original size
I'm writing an android app that should load a picture from gallery and then the user will be able to add some predefined images(drawables) on the selected picture. They can drag, resize and rotate ...
0
votes
1answer
48 views
Questions about an Android Tutorial
I started learning about Bitmaps and simple graphics in Android. I'm a little new to this so I'm still trying to grasp the concepts. My code below comes from a tutorial. It works with bitmap and ...
0
votes
3answers
41 views
Scaling bitmap to 80 percent
I am trying to scale a bitmap using options.inSampleSize, but by what I understand the mapping goes like this
If inSampleSize 1 then the resulting image is 100%
If inSampleSize 2 then the resulting ...
0
votes
1answer
49 views
Applying color filter in StateListDrawable not working
I'm writing an application in which I have to do some on-the-fly image-mutations.
What I have to do is put a drawable on screen somewhere, give it a fancy color that can be changed on the fly and ...
0
votes
0answers
17 views
Experiment on byte array .Clarification needed
I am posting this question just to increase my knowledge and to be clear about image and bitmap concepts.
Most of you know that we can convert bitmap to byte array and byte array to bitmap.
What i ...
0
votes
1answer
82 views
Android: Comparing images in a ImageButton and resource
I have an ImageButton and it has a background set to it like this:
final ImageButton[][] gridButton = new ImageButton[5][5];
gridButton[0][0] = (ImageButton) findViewById(R.id.imageButton1);
...
2
votes
1answer
124 views
How to convert the LayerDrawable to Drawable in Android?
In my app i use the LayerDrawable to display overlayer image.and i do this is successfully use of layerDrawable.
after i get layerDrawable set as a imageView.setImageDrawable(layerDrawable);
Now i ...
0
votes
1answer
124 views
ImageView with setBackgroundResource and setImageBitmap
I have Imageview which i am creating it dynamically,now i am setting
imageView.setImageBitmap(bitmap);
imageView.setBackgroundResource(R.drawable.a);
What is happening is the setBackgroundResource ...
0
votes
2answers
67 views
Draw background on a bitmap where i'm going to draw a view that i'm going to export to a file
I'm exporting my view into a file.
My problem is that I'm using Holo Light theme but the file exported has a dark background.
The code:
Bitmap b = Bitmap.createBitmap(totalWidth, totalHeight, ...
-6
votes
1answer
126 views
How to decode large image in android in such a way that decode process should reduce image size? [closed]
How to decode large image in android in such a way that decode process should reduce image size?
The code used:
Bitmap bmp= ...
0
votes
3answers
327 views
How to convert a Drawable image from resources to a Bitmap
I were trying to attach images from Drawable to an email (from my app to Gmail app)
I have tried the next code:
Intent emailintent2 = new Intent(android.content.Intent.ACTION_SEND_MULTIPLE);
...
0
votes
1answer
215 views
set image source to Bitmap in Drawable
I have created XML file in drawable folder as code below:
XML Name is : background_bitmap_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<bitmap ...
4
votes
4answers
216 views
Set Picture into RemoteViews
I have some SVGs in my assets folder and I need to dynamically set them in my widget (on an ImageView).
I am using this library: http://code.google.com/p/svg-android/
This library returns a Picture ...
0
votes
2answers
248 views
Convert Drawable/Bitmap to ResourceID (android)
So I need to have an icon based in an Image I have on my SDCARD, but I can only get the Drawable/Bitmap, how can I get the int resource based on that?
public static String SDCARD_PATH = ...
3
votes
1answer
547 views
android programmatically blur imageview drawable
I want to programmatically blur and unblur images in Android.
I hear that android flag "blur" is no longer supported after API 14 , but I wanted to use Java methods anyway. My main problem is ...
2
votes
1answer
78 views
Get byte[] of a Drawable without Bitmap creation
I need to send a PNG to a server. One very simple solution would be to create a Bitmap and convert it to a byte[] with the following code:
final Bitmap bitmap = BitmapFactory.decodeResource(res, ...
0
votes
0answers
53 views
How to: BitmapRegionDecoder using String pathName to the drawable directory
Okay so I am making an app to play Blackjack for a class on Android, and am visually displaying the cards. I would like to use the BitmapRegionDecoder to be most efficient at loading my cards, which ...
2
votes
1answer
162 views
Challenge For Android ImageButton background
Alright so I was trying to figure this out and how no idea how to proceed
below is a ScrollView which look background is set to @drawable/patterrepeat
<ScrollView ...
0
votes
3answers
330 views
Out Of Memory Error Using Bitmaps in Drawable
I am working on a wallpaper app. I have all my images stored in Drawable folder.
I am getting OutOfMemoryError when I add more than 30 wallpapers. I want to know how to overcome this.
Should I ...
3
votes
1answer
173 views
background image of a row in a listview
I have a listview that displays an image and a text from internet.
My intention is that this image, in addition to showing a imageview, is the background image of listview row.
This works but with ...
0
votes
2answers
52 views
Android Bitmap loosing image resolution
I am developing an application for android and it contains several images and I have to get them from drawable, so I am using bitmap for them to avoid out of memory exception by rescaling them, but ...
2
votes
2answers
88 views
Incorrect BitmapDrawable dimensions
I'm initializing a Drawable like this:
Drawable drawable = new BitmapDrawable(bitmap);
The dimensions of the bitmap are 50 x 77 (confirmed with the debugger, this values are set in the fields ...
0
votes
1answer
166 views
problems with big drawable jpg image
during a couple of days i've been looking here and on the Internet in many post for a solution on an issue im having loading or moving a large jpg image (located as a drawable reource by now) and I ...
0
votes
1answer
123 views
How to reuse a bitmap on android
I have the following code:
public void loop1(int times, SpriteObject[] obj){
for(int i = 0; i < times; i++){
obj[i] = new ...
0
votes
3answers
174 views
Setting Drawable to imageView
I am currently trying to retrieve icons of a package and set it into a imageView with this code. ai is a Drawable.
final PackageManager pm = getPackageManager();
try {
ai = ...
0
votes
2answers
365 views
Converting drawable to string to pass to another activity
I'm currently trying to convert a drawable to a string and pass it to another activity via shared preferences using this method. loadIcon is a Drawable.
Activity 1
try {
ai = ...
1
vote
1answer
144 views
get x y coordinates of Drawable object
I have a Drawble object, and I want to find the absolute coordinates in the screen.
All the functions I found were related to the relative coordinates and not the abosulote .
Please Help Me! :-)
...
1
vote
3answers
343 views
Bitmap drawable (Map Overlay Item) pixelizes after rotation in android
I'm trying to rotate an overlay drawable to represent an overlay item in Android.
I use this:
Bitmap bmpOriginal = BitmapFactory.decodeResource(this.getResources(), R.drawable.map_pin);
...
2
votes
2answers
558 views
Only Android 4.1, Bitmap is recycled automatically
I've got very critical problem.
Only Android 4.1, Bitmap is recycled automatically!
I didn't call recycle() in my code!
My project works fine in other OS versions( ~ 4.0.3) with any resolutions.
Other ...
5
votes
1answer
215 views
How to solve OutOfMemoryError using LayerDrawable
Error:
java.lang.OutOfMemoryError
at android.graphics.Bitmap.nativeCreate(Native Method)
at android.graphics.Bitmap.createBitmap(Bitmap.java:605)
at ...
0
votes
1answer
213 views
How to get bitmap file name in Android if you have Bitmap ArrayList
I have an ArrayList of bitmap. I want to get the name of bitmap file of any bitmap let say
ArrayListName.get(5);
I have searched, but could not find any solution for my problem.
0
votes
1answer
191 views
bitmap size exceeds VM budget vs using drawables android
In my app I am fetching 4-5 bitmaps from url and I use them like a gallery.
if i switch images more than 6-10 times I am getting this error:
09-01 12:08:45.217: E/AndroidRuntime(350): ...
0
votes
1answer
55 views
Unable to draw on top of bitmap to which i set BG from resource
I am trying to set a background ti bitmap and then to be able to draw on top of it so later i will be able to save the bitmap to gallery.
@Override
protected void onSizeChanged(int w, int h, int ...
1
vote
1answer
435 views
How to add drawable in runtime properly using Mapsforge
I could get Mapsforge lib 0.30 working on Android and I'm really satisfied with it.
Problem I have is I can't add a custom drawable in a proper way.
When I add a drawable to be drawn, the drawable ...
1
vote
1answer
726 views
setColorFilter() and mutable drawables
What's wrong with this code ? I have been struggling to get dwb2 ColorFiltered for hours and it just displays the original resource when this button is pressed :(
public ButtonEx(Context context, ...
2
votes
1answer
267 views
Does Drawable takes less memory then a Bitmap?
I'm an noob in Android and new here .
I just know that Bitmap store images pixel by pixel and don't do any compress .
Is Drawable same as Bitmap ?
or
For the same image file , a Drawable is ...
0
votes
1answer
92 views
Why does this draw without a background but not drawing to canvas when I setBackgroundDrawable?
When I set the background on my view.
//background
Bitmap back_bmp = BitmapFactory.decodeResource(context.getResources(), R.drawable.background);
BitmapDrawable backTiled = new ...
0
votes
0answers
50 views
Android- Choosing dimensions for baseline bitmap image to be made from vector image
I've seen a lot a similar questions, but no one has ever how someone picks the dimensions for their baseline bitmap. I understand that you need to create ldpi, mdpi, ldpi, and xdpi bitmaps and that ...
0
votes
1answer
439 views
Drawing a Drawable to a Bitmap
I have an XML drawable file with a stroke, and I also have several bitmaps which I want to apply the stroke to. I tried calling Drawable.draw(canvas), but it throws IllegalStateException
stroke XML:
...
2
votes
1answer
2k views
BitmapFactory.decodeResource and drawable* folders
I am wondering if decodeResource (Resources res, int id, BitmapFactory.Options opts) takes into account the drawable-ldpi,mdpi,hdpi etc. folders.
I checked the source code, and it doesn't look like ...
2
votes
1answer
887 views
Can not pass bitmap between activities in android
I need to change background of the activity dynamically , by selecting an image from an other activity. and passing the selected image back to the calling activity , but when i try to get the image , ...
0
votes
1answer
556 views
Turning a view into a drawable as a map overlay item
I have a MapView that works properly and is setup, the overlay items being drawn (when simply referenced as a drawable) work just fine. However, each drawable item needs to include a numerical value ...
0
votes
0answers
392 views
Android Remotview set Bitmap as Background
I´m trying to do my first Widget for my App.So what im trying to do is, implement a simple widget like in my app here:
How the App looks like
The Problem I have, is the colored field on the ...
0
votes
1answer
365 views
Layer List Drawable - clip bitmap by nine-patch?
I would like to create Drawable that contains nine-patch and a Bitmap.
I put them together in Layer List Drawable, but it turns out that Bitmap is extending nine-patch beyond the edge.
Is there any ...
0
votes
1answer
114 views
How can I provide Bitmaps for the full Android screen resolution?
Simple question actually and I have spent hours searching for an answer.
What is the best way to provide bitmap resources that fill the full screen? For instance for a full app background or ...
0
votes
0answers
32 views
android http drawable to bitmap onto canvas
Let me state what I'm trying to do.
Grabbing image from internet via a Http call (done)
Drawable image = ImageOperations(this, path, "image");
Put the image onto a canvas(Problematic)
what I have ...
0
votes
0answers
91 views
Resize a bitmap with drawable resource
i have a drawable resource 505x550, and i have a linearlayout with params 320x484, and i can´t resize my bitmap to this params this is my code:
mBitmap = BitmapFactory.decodeResource(getResources(), ...
0
votes
1answer
599 views
PackageManager.getApplicationIcon() returning default icon?
Is there a way to tell if the Drawable I'm getting back from getApplicationIcon() is a default/built-in icon or not?
For example, I have several applications installed on my emulator. "Adobe Reader" ...
0
votes
1answer
385 views
Android giving out of memory when loading a small image Drawable
I am wondering how are image drawables are loaded into memory when they are used in a view.
My problem is that I have a big-dimensioned image (about 600x700), which only weights 4kb. I thought there ...
1
vote
1answer
418 views
Android how to set opacity in bitmap xml
I need to create a bitmap resource via xml, like:
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
...

