Tagged Questions
0
votes
2answers
41 views
Android Bitmap OutOfMemoryError [duplicate]
I'm having an OutOfMemoryError in my VSD220 (It's a 22" Android based All in one)
for (ImageView img : listImages) {
System.gc();
Bitmap myBitmap = ...
0
votes
0answers
29 views
How to refresh image in cell of Gridview Android
I have a view (LinearLayout) contain a gridview.
Cell of gridview contain Imageview
In getView in adapter load image from sdcard to imageview
My problem is imageView don't refresh after set bitmap.
I ...
0
votes
1answer
45 views
how to solve RunTime error with imageView in android
I still have the problem any body help?? please i don't have time. Tommorow is my last graduate project presentation.
(java.lang.RuntimeException: Unable to start activity ...
0
votes
1answer
24 views
Need to ImageView to download image, not use cache
I have and imageview that downloads a bitmap:
InputStream in = new java.net.URL(urldisplay).openStream();
bm = BitmapFactory.decodeStream(in);
The imagview then scales the image:
...
0
votes
0answers
24 views
Saving select Icons return from Package Manager
Im trying to add my own spin on CommonWare's project (Launchalot) and add a feature to save the icon's that are returned from package manager. I've added a checkbox, and a menu item i intent to ...
0
votes
1answer
27 views
Can a bitmap point to another bitmap?
I have a bitmap downloader class which decodes a stream into a Bitmap object.
Can I do something like
Bitmap bitmap;
bitmap = object;
when I do imageview.setImageBitmap(bitmap)
would be the same ...
1
vote
0answers
38 views
Fullscreen Rotating Background Image
Developing an app for Android and I'm required to have a fullscreen image rotate (spin around infinitely, pivoted at the centre of the screen) in the background.
I have tried rotating the ImageView ...
0
votes
0answers
31 views
Blurred out effect animation on an ImageView
I am making a quiz game in which pictures are shown to the players. Initially a blurred image is shown and with time the picture becomes clearer and clearer. How do I do this? Thanks.
I am thinking ...
0
votes
1answer
66 views
Android how to draw 400 similar pictures (only different colors) efficiently at runtime
I know that similar questions have been asked but I couldn't find a good awnser and I am an android beginner. I want to be able to draw houses (screenshot) during runtime. So far I have bean able to ...
0
votes
3answers
59 views
Prevent Image Scaling in Android App
I have an image that I am downloading from the internet in my android application. I do not want this image to be resized/scaled. Is there anyway I can stop the image from being scaled?
Here is my ...
0
votes
1answer
48 views
Loss of quality when saving image from camera into an imageView
I'm trying to create an app where the user can take a photo using their camera and have it save to specified folder. However when it converts from the imageView to a PNG file there is a significant ...
0
votes
1answer
79 views
ImageView can't load image(jpg,png,…)
I'm trying to load an image from my res/drawable folder.I used the guide from Android Developers Link.
For some reason it isnt working.The only error I get is "SPAN_EXCLUSIVE_EXCLUSIVE spans cannot ...
1
vote
1answer
80 views
Android apply colorMatrix colorFilter on part of imageView with a mask
I want to change the brightness on certain part of an image. I know how to use ColorMatrix to change the brightness(or hue) of an image. But it will be applied to the whole image.
I have a mask file ...
0
votes
1answer
23 views
How to save pixels displayed on the screen in mutable Bitmap
I am trying to make an Android aplication, in which you take a foto. You zoom in to a desired region of the foto then you copy this region into a Bitmap for further processing.
I tried to make a new ...
-1
votes
1answer
35 views
Display a specific area of a Bitmap in imageView
Here is my issue, I display in a ListView some Pictures come from web.
I would like to display in my ImageView only a specific area to my picture, without resizing it.
Here is a concret example :
...
0
votes
2answers
99 views
convert bitmap value to Imageview
I am fetching image from mysql through php
and fetching it using asyntask<>
$b64image value is getting in my android code.
<?php
include("db.php");
include("database.php");
...
-2
votes
2answers
66 views
Image loaded from a PHP script isn't displayed in ImageView
I want to fill an ImageView with an image saved on my localhost. I can display it in a browser fine but it doesn't get displayed in my ImageView.
PHP script to display image:
<?php
...
1
vote
1answer
57 views
Is bitmap can be used after it's been garbage collected?
I was watching this video, that talks about memory allocation for bitmaps and garbage collection:
DevBytes: Bitmap Allocation
Chet is talking about how it was managed by the developer prior to SDK ...
0
votes
1answer
157 views
How to cache imageview in listview?
I am having the same problem as this guy
Listview shows wrong images
I saw the solution that I have to cache it. But in my cache, I am not sure how to apply the cache given in the solution. I keep ...
0
votes
1answer
65 views
How to clone a section of screen in real time on android?
I'm trying to solve a finger occlusion problem by having on touch events clone the covered section of the screen to an imageview. I am pulling the image from /dev/graphics/fb0 and cropping the image ...
8
votes
3answers
340 views
Android Bitmap Memory Issue - Error: Out of memory on a 8294416-byte allocation
I am currently developing an app that goes through a story. The story contains "scenes" which contain multiple JPEG and PNG files that are displayed via ImageViews. I create the ImageView and add at ...
2
votes
1answer
87 views
Why is Android allocating twice as much memory as I expect for an image?
I'm loading an image resource in an Android application using setImageResource(), and for some reason this is using a lot of extra memory.
This is what I see when the image is loaded:
03-29 ...
1
vote
1answer
182 views
load Image from assets folder to ImageView loses transparency
I hope someone can help me with this issue.
I'm loading Bitmaps from the assets folder and displaying them afterwards. So far so good, and everything works pretty well except that all of my pictures ...
0
votes
0answers
436 views
java.lang.RuntimeException: Canvas: trying to use a recycled bitmap android.graphics
I have an activity which can be called frequently, the activity is in form of splash screen, which displays an image and finish after 3 seconds. But the activity crashes if called second time ...
1
vote
1answer
391 views
Android set bitmap to Imageview
Hi i have a string in Base64 format. I want to convert it ot a bitmap and then display it to an ImageView. This is the code:
ImageView user_image;
Person person_object;
@Override
protected void ...
0
votes
2answers
163 views
How to get the size of bitmap after displaying it in ImageView
I have a imageview
<ImageView
android:id="@+id/imgCaptured"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
...
0
votes
1answer
108 views
Erase a texture on overlay bitmap - Android
I have a ImageView that contains two bitmaps a background and a pattern painted on the foreground. What I want to do is erase the pattern painted on the foreground so that the full background is ...
0
votes
2answers
297 views
How to make bitmap transparent?
/**
* @param bitmap
* The source bitmap.
* @param opacity
* a value between 0 (completely transparent) and 255 (completely
* opaque).
* @return The ...
1
vote
1answer
97 views
creating a scaled bitmap in onCreate() according to the Imageviews height and width
Here is the problem im having, in the onCreate() i would like to initially set the imageview to the first image in the list of files but with the ImageViews width and height, when it flips back and ...
0
votes
1answer
91 views
Create 1 imageView with 9 image Files
I searched from a way to create a single imageView from 9 image files like this :
IMG1 - IMG2 - IMG3
IMG4 - IMG5 - IMG6
IMG7 - IMG8 - IMG9
I seen several interesting topics that helps me. One of ...
4
votes
4answers
218 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 ...
3
votes
2answers
352 views
Android: Bitmap size exceeds 32 bit in DialogFragment
This is not a duplicate of Mysterious stacktrace in Android developer console (bitmap size exceeds 32bits)
That question didn't provide a single line of code and there's no answer either; besides, I ...
0
votes
3answers
113 views
Get Bitmap from an ImageView in Monodroid project
Is it possible to retrieve the bitmap of an imageView ?
I tried this but I'm getting NullPointerException and the edited code don't work in monodroid
0
votes
1answer
161 views
The method getDrawingCache() returns null depends on portrait or landscape mode
If I start my App in Landscape-Mode the getDrawingCache() returns the Bitmap I need, after changing the orientation to portrait mode (while app is running), getDrawingCache() returns null.
If I start ...
1
vote
2answers
170 views
Null exception in imageView by Url android
I am retrieving image from url and display them in imageview. but my code is giving me null message.
ImageView imageview = (ImageView) findViewById(R.id.imageView1);
try {
Uri ...
2
votes
2answers
759 views
Loading large bitmaps to ImageView in ViewPager - out of memory
I have ViewPager which I use to show zoomable images (using ImageViewTouch).
I need to load large bitmaps from Internet (http). By large I mean 2000x1000. The images need to be so large, because they ...
3
votes
1answer
553 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 ...
0
votes
0answers
439 views
setImageBitmap don't work in Android
I'm trying to create a button like the ImageButton. And faced with a vexing problem. After applying setImageBitmap, with ImageView nothing happens. Bitmap itself contains image(not null). Moreover, ...
1
vote
2answers
158 views
android.widget.ImageView scaling produces ugly results
I'm trying to scale an image in an ImageView on Android, but no matter what settings I try, the scaled-down image always looks ugly. Here is an image produced by my code:
...
0
votes
2answers
599 views
Android getExternalCacheDir() returns null
I am trying to implement the best practices described in Loading Bitmaps effeciently
I've run into trouble because this line:
Utils.getExternalCacheDir(context)
inside of DiskLruCache.java is ...
0
votes
0answers
342 views
Trouble creating a bitmap blur effect on imageview in android
I am trying to create a blurred effect on an image being displayed in an image view. I have came across an example that stated downsizing the image in a bitmap and then upscaling it again (bilinear ...
0
votes
1answer
129 views
problems with camera & gallery onActivityResult
I have a problem when I click the image button opens a dialogue asking me if I want to choose from the gallery or take a photo.
When I select from the gallery all right image appears then I send it to ...
1
vote
3answers
188 views
java.lang.OutOfMemory with large high-resolution images
I'm developing an Android app which uses multiple large images in several of its activities. Each image is around 1280x800 and I load about 2-4 of these images for each Activity. I realize that these ...
0
votes
3answers
128 views
Image not showing on image view
I am trying to set image on imageview but image is not show.
I am reading image url from json data and then trying to set it on ImageView but my image is not visible. No any exception occur.
...
1
vote
0answers
92 views
witch is the best way of display image thumb in android?
Here i create one app.in witch i download the image from Net and display it page by page in activity.
user requirement is display the every image thumb is bottom of the activity.
so i create the ...
0
votes
1answer
134 views
Efficient Bitmap memory use in Android
This is a general question about the way in which Android manages Bitmaps. I am wondering if it is better from a memory perspective to provide correctly sized Bitmaps to ImageViews rather than ...
5
votes
3answers
802 views
How to make an image fit into a circular frame in android
I have a ListView in which there is an ImageView, the image in the ImageView gets loaded dynamically after its fetched from the server.
Now, I want these images, of any size, to fit into a circular ...
0
votes
3answers
348 views
How to increase the image quality in android..?
I am doing a "Image Editor" like application. I used default camera intent to capture the image. I used to parse the URI and set that to the image view like the following:
...
3
votes
1answer
191 views
android trying to round the bitmap corners
I have an imageView and and I'm trying to create rounded corners, tried all of the solutions from this post: How to make an ImageView to have rounded corners But nothing worked.. Here's my XML
...
0
votes
0answers
166 views
android set decoded bitmap in ImageView
I let the user pick a picture by doing following:
startActivityForResult(new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI),
...
















