Tagged Questions
-2
votes
1answer
26 views
Different ways to set imageview if you have path_to_image in hand [duplicate]
I'm seeking different ways to setBackground of imageview, when you have Path to the image in hand.
Eg:- Using Drawable class
Drawable pic=Drawable.createFromPath(pathName);
...
0
votes
1answer
16 views
Set ImageView to a drawable (Android)
Forgive me for being new to and my teminology may be incorrect:
I have an array of images in class1, when an image is selected its id is passed to class2 (code below) I then display that image and ...
0
votes
1answer
38 views
Resizing an image to look the same across all devices
I read the http://developer.android.com/guide/practices/screens_support.html and I understood only a few things.
So, I have an ImageView with android:src = "@drawable/logo". The logo.png is placed ...
0
votes
1answer
79 views
How to pass a jpg id between activities Android
I have a gridView with imageViews in one Activity and I want to load one of them in other activity on a new ImageView when select it, but i have no results
Activity 1:
public class Level extends ...
4
votes
4answers
220 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 ...
1
vote
0answers
54 views
Get drawable displayed size after scaling
here's my problem:
How can get the displayed size of the drawable inside an ImageView in pixel after scalling, assuming that the ImageView size isn't equal to the scaled drawable?
A lot of methods ...
0
votes
0answers
83 views
GridView crashing,out of memory exception with image adapter. and how to not oversize memory by loading images
I have problem.I have set the GridView and I load images in it with ImageAdapter. The problem is that when I load there few small pictures it works normal...But when I try to load bigger pictures it ...
2
votes
2answers
108 views
How to create a progressDialog onload of imageView?
I would like to load a large/complex svg image file into my imageView. Loading the svg takes time to load on my HTC Desire S and Lenovo a60. About 5 Second and 10 seconds respectively.
Right now my ...
0
votes
1answer
51 views
Get a Drawable from an ImageView
As the title describes, I want to get a Drawable from an ImageView programatically.
I searched on the internet and I can't find how can I do that.
3
votes
1answer
558 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
2answers
262 views
Passing parameters into AsyncTask
Hi so i'm trying to grab a image from a url link via AsyncTask, the function to grab the image itself work fine. but what i trying to do is to pass the src variable into a asyncTask which seems to be ...
0
votes
2answers
106 views
Drawable in listview causes memory allocation too much?
I have a view pager with four pages, and each page have a listView. Everything's ok so far, but when i scroll the list it kicks thousand times GC_EXTERNAL_ALLOC and it dicreases performans of my app. ...
1
vote
1answer
124 views
Android: Right to left tiled drawable
How can I make a drawable that consist of two drawables: one repeats on y-axis and other "finishes" it on the right end?
In my app I use it like this:
<bitmap ...
0
votes
0answers
69 views
Draw drawable on ImageView
I have a custom subclass of imageView that I can pan and zoom. How can I put on top of it other image (from drawable) that will pan and move with the imageView like it stuck to it?
1
vote
2answers
162 views
ImageView background onclick
My app have 5 "tabs" (image views) in a row, I've made onClick-methods for all of them since they are changing the URL to my web view when you click them. (just explaining so you get the idea of the ...
0
votes
3answers
178 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
115 views
deep copy of a drawable
I have an imageview.
in its onClick i get its drawable
Drawable dr = ((ImageView) v).getDrawable();
and set it to a dialog's imageView
zoomedImage.setImageDrawable(dr);
but when i close the ...
2
votes
1answer
113 views
How do I create a drawable on the fly for a custom list adapter to assign to an imageview?
I have a column in a database that can be any combination of of the letters RGBMCY, (Red, Green, Blue, Magenta, Cyan, Yellow). It can be 1-6 characters long, any order, as long as each letter appears ...
0
votes
1answer
269 views
How to set the image from drawable folder to imageview using the path of the image from sqlite database?
anyone knows how to set the image from drawable folder to imageview using the path of the image from sqlite database?
Any help will be appreciated. Sample codes will be helpful. Thanks. =)
-1
votes
1answer
84 views
Android - Loading picture from web no longer working
I have code that i was copying from another project that will allow you to pass it a url and it will return a picture...then you set it to an image view and it will display the picture...but somewhere ...
0
votes
0answers
271 views
AnimationDrawable is not starting, stuck at the first frame
I have got some problem with the AnimationDrawable, as it stuck at the first frame.
So let me explain what I want to achieve.
I am trying to draw a two frames animation on a canvas. SIMPLE...
so, ...
0
votes
1answer
912 views
Android adding image to dynamic listview
I have already created a dynamic list view that passes text to a SimpleAdapter, however I would like to pass information to make an image appear from the drawable folder. Here is the XML layout for ...
0
votes
1answer
108 views
Passing View based on drawables to ImageView
I've got something like this:
view = gridView.getChildAt(position)
All elements in gridView are drawables stored in drawable folder
Now my question:
How to pass view to imageView or how to get ...
0
votes
2answers
191 views
Replacing existing drwable in imageview is wrong scaled on some devices
The Situation:
I have a imageview with a layer list of two drwables.
The frame drwable is 800x400px and the cover drawable is 800x380px.
Both images reside in the folder drawable
<ImageView
...
3
votes
2answers
563 views
how to get the source of ImageView in order to change it?
I know that changing the ImageView resource is not big deal just using myImageView.setImageResource(mynewImageDrawable)
but what I want to do is to check the current ImageSource before changing it.
...
0
votes
1answer
389 views
Android AnimationDrawable creation and looping
I am trying to create an animation drawable that will simply have two frames and loop on the screen.
However, for some reason my Animationdrawable isn't doing even one round and just showing the ...
0
votes
1answer
245 views
Set imageview from array reference?
I'll keep this simple. I want to set an ImageView in an AlertDialog to an image in an array of Drawables The image that I would like to set to the ImageView can be retrieved by accessing the ...
0
votes
2answers
2k views
How to set ImageView drawable Size based on Its parent view size?
I have imageView inside a relative layout. And when i create the activity i run thread to grap bitmap from the internet and set the imageView.
What i want is to resize the bitmap to scale based on ...
0
votes
1answer
490 views
Android: How to only rotate the drawable part of an imageView?
I have an ImageView object where both its Background and drawable attributes are set.
I need to animate the drawable part of the ImageView while the background stay still.
I can't find a way to do ...
0
votes
3answers
365 views
How to download a image to a drawable folder from a url?
I would like to add a image to a xml image view, and needs to be updated on timely basis.Whether is there a possibilty of updating directly to the drawables or how to do it from device memory i.e. ...
1
vote
3answers
172 views
Display images in spinner placed in res folder
I have images placed in following path
res>drawable>Images>Currencies>[All images]
I have made a custom spinner Adapter.
viewHolder.flag = (ImageView) ...
0
votes
2answers
429 views
How to prevent an image from being resized in Android
I am writing an application on android. I am downloading an image from the server and trying to set it as an ImageView background using setBackgroundDrawable.
Drawable drawable = ...
1
vote
2answers
2k views
SetImageDrawable in a list view
In my list view, I want to make it so that it will change the drawable in the image view i made, but I get an error every time I run it.
ImageView Player;
@Override
public void onCreate(Bundle ...
0
votes
1answer
678 views
Android: Drawing Image onto ImageView from a known path on SD Card
I have a screen that contains an ImageView which is not visible to user. User would have to browse for a picture from their Gallery, in which I have successfully coded. I've used toast to ensure that ...
0
votes
1answer
707 views
How can I make off-center rotate animations in android look similar in portrait and landscape?
I have a screen that has a few images and one of them has a neat animation on it that looks awesome in portrait.
Awesome animation in portrait - rotate_anim_port.png - in HERE
It does not look so ...
0
votes
1answer
145 views
Successive ImageViews in a loop
I am working on an app where I have to set up a number of drawables. The number depends on the user input.
I therefore need to use a loop there I set up as many successive images as the user have ...
0
votes
2answers
755 views
Android fill array with ImageViews
I want an array of imageviews, but I don't know how to fill it with an object of type imageview.
ImageView[] forAdapter = new ImageView[imageIds.size()];
for(int i = 0; i < imageIds.size(); i++)
...
3
votes
1answer
549 views
How do I draw an image from drawable onto an imageview with Canvas - Android
I have an activity which has an ImageView in it. What I want to do is be able to draw where the user touches that Imageview with an image from the drawable folder. I've read that the best way is to ...
4
votes
2answers
1k views
Rotating ImageView in Android < API Level 11
So in API Level 11 Google introduced the ability to rotate an ImageView (Yay, after they introduced the possibility to Animate such a rotation, yay smart thinking, yay!)
But how should I go about to ...
1
vote
2answers
3k views
Android - Best way to overlay a play button on an image/thumbnail
I have an android application which can playback audio/video and show pictures.
For videos I want to overlay a play button on top of the preview image and also in list views..
Right now how I'm doing ...
1
vote
1answer
3k views
Android: How to get Drawable Image name
I want to get the name of the drawable image and want to store that name in a string. For example , for an Image, I might use a .png file named play.png or stop.png. I just want to know which image in ...
1
vote
0answers
73 views
Setting an ImageView as a MapOverlay
I currently am using a drawable as a Mapoverlay after following this tutorial .
http://developer.android.com/resources/tutorials/views/hello-mapview.html
Using this I can set a picture to be ...
0
votes
1answer
512 views
Is there a way to find the on-screen coordinates of an ImageView's drawable?
I have an activity which consists of just an ImageView. The drawable contained in the ImageView is a Bitmap that was captured from the camera. The image is automatically scaled (maintaining the ...
1
vote
3answers
501 views
Android: How to add a ImageView to a TableRow in code
I'm tryin to add a ImageView into a TableRow in java code, but it always shows in blank. The image seems to be there, but it is completely white.
This is my code:
TableRow newRow = new ...
0
votes
1answer
1k views
How to make continously running TransitionDrawable animation in Android?
I'm trying to make an animated logo. It consists of two static images.
I would to like to achieve a cross-fading effect.
I've done it with the use of TransitionDrawable, set the crossFadeEnabled and ...
0
votes
1answer
509 views
How to set an image in an image view, android
Hi I want to show an image from SD card. I have 10 images. out of which i am able to show 9 images but 1 image i cannot show in image view.
My SD card location is correct. I am using android ...
0
votes
2answers
1k views
animating images using drwable object
i am new to andriod and i would appreciate it if someone can help me.
i am trying to animate a sequence of images (pictures). i read a little about it and it seems that a good way to do it , is to use ...
7
votes
3answers
7k views
Repeat drawable in imageview?
Is it possible to repeat a drawable in an ImageView? I manage to repeat my drawable as a divider in a ListView, but not as an ImageView. Here is my repeated image definition:
<bitmap ...
0
votes
1answer
511 views
how to cast drawable image to imageview in android
I am zooming a drawable image and then dragging it with the following codes. The image is getting zoomed but throwing a CLASSCASTEXCEPTION on dragging. The code for dragging image is as:
public ...
4
votes
1answer
2k views
Android ImageView ScaleType *FIT_TOP*
I am trying to implement an ImageView with could holds both landscape or portrait images.
Those images should fit the width of the imageview (if landscape) or the height (if portrait) but in any case ...