Displays an arbitrary image, such as an icon.

learn more… | top users | synonyms

110
votes
10answers
83k views

How can I get zoom functionality for images?

Is there a common way to show a big image and enable the user to zoom in and out and pan the image? Until now I found two ways: overwriting ImageView, that seems a little bit too much for such a ...
89
votes
17answers
107k views

How to load an ImageView by URL in Android?

How do you use an image referenced by URL in an ImageView?
89
votes
10answers
42k views

How to make an ImageView to have rounded corners

In android, an ImageView is a rectangle by default. Is it possible to make it a rounded rectangle (clip off all 4 corners of my Bitmap to be rounded rectangles) in the ImageView? If yes, can you ...
46
votes
6answers
37k views

Custom ImageView with drop shadow

Okay, I've been reading and searching around, and am now banging my head against the wall trying to figure this out. Here's what I have so far: package com.pockdroid.sandbox; import ...
31
votes
2answers
15k views

replace selector images programmatically

I have an ImageView that has a drawable image resource set to a selector. How do I programmatically access the selector and change the imgages of the highlighted and non-highlighted state? Here is a ...
1
vote
1answer
810 views

Listview click to show image in ImageView

I follow this tutorial http://wptrafficanalyzer.in/blog/android-lazy-loading-images-and-text-in-listview-from-http-json-data/. and I wonder, how can i click the listview item and show the image of ...
70
votes
5answers
57k views

Border for an Image view in Android?

How can I set a border for an ImageView and change its color in Android?
10
votes
6answers
23k views

Android: Scrolling an Imageview

I have an ImageView that is twice the height of a normale screen ( 960 dip). I would like to scroll it nicely up and down on the screen. The bottom of the screen should contain a button. I have tried ...
27
votes
7answers
58k views

Show Image View from file path in android?

I need to show image by using File name only not from the Resource id. ImageView imgView=new ImageView(this); imgView.setBackgroundResource(R.drawable.img1); I have the image img1 in the ...
18
votes
3answers
12k views

Grid of images inside ScrollView

I'm trying to create a screen with both text and images. I want the images to be laid out like a grid, as shown below, but I want them to have no scroll functionality other that the one provided by ...
32
votes
2answers
52k views

How to set margin of ImageView using code, not xml

I want to add an unknown number of ImageView views to my layout with margin. In xml, I can use layout_margin like this: <ImageView android:layout_margin="5dip" android:src="@drawable/image" /> ...
15
votes
7answers
21k views

ANDROID::Rotate image in imageview by an angle

I am using the following code to rotate a image in ImageView by an angle. Is there any simpler and less complex method available. ImageView iv = (ImageView)findViewById(imageviewid); TextView tv = ...
19
votes
6answers
33k views

android imageView: setting drag and pinch zoom parameters

this is my first post on here! :) Anyway I am currently developing for Android (my first app) an application which lets users see the subway map and be able to pinch zoom and drag around. I am ...
4
votes
4answers
4k views

Android Drag and drop images on the Screen?

I m working on project user to move the image in one position to Another position on the screen. I have written a sample code to move the image but the problem here is if I move one image the ...
30
votes
2answers
23k views

Android: OutofMemoryError: bitmap size exceeds VM budget with no reason I can see

I am having an OutOfMemory exception with a gallery over 600x800 pixels JPEG's. The environment I've been using Gallery with JPG images around 600x800 pixels. Since my content may be a bit more ...
13
votes
1answer
12k views

How to convert a Base64 string into a BitMap image to show it in a ImageView?

i have a Base64 String that represents a BitMap image. i need to transform that String into a BitMap image again to use it on a ImageView on my android app how to do it? this is the code that i use ...
17
votes
3answers
18k views

Android — How to position View off-screen?

I'm trying to animate a simple ImageView in my application and I want it to slide in from the bottom of the screen and come to a resting position where the top 50px of the view is off the top of the ...
10
votes
2answers
7k views

displaying emoticons in android

My IM app has to support emoticons. They are gif-s, and have textual representations, which are used in the input box if the user selects one of them. But I'd like to display them as images after they ...
15
votes
3answers
25k views

Android: how to convert whole ImageView to Bitmap?

I have my application that is displaying images with different ratio, resized inside (centerInside) imageView. What I need is to create bitmap from the ImageView including the background (black in ...
3
votes
2answers
16k views

How to make my ImageView zoomable?

Can anyone help on how to use the matrix scaletype to zoom an imageview and also how to use the translate method so that it can be focused at the center? I have tried using webview to be able to use ...
1
vote
2answers
6k views

take picture from camera and choose from gallery and display in Image view

I want to take photos from gallery and set it in my ImageView as well as I want to take photo from camera and set it into my same Image View. I am very much stuck on this. Can anyone help me? ...
25
votes
4answers
7k views

Why are there extra pixels around my Android GridView?

I have a GridView in my Android application that has a number of ImageViews in it. The space on my screen is limited and I want the images to take up as much of the available space as they can. ...
12
votes
2answers
22k views

Android Drop Shadow on View

I have done some extensive searching for code examples on this but cannot find anything. In particular, I am looking to add a shadow to a png drawable I am using in an ImageView. This png drawable ...
18
votes
4answers
43k views

How do you setLayoutParams() for an ImageView?

I want to set the LayoutParams for an ImageView but cant seem to find out the proper way to do it. I can only find documentation in the API for the various ViewGroups, but not an ImageView. Yet the ...
11
votes
5answers
29k views

android multitouch image zooming?

I'm displaying an image on full screen now i want to zoom it in or out. Any one guide on how I can implement multi touch image zooming? I am using the 2.1 sdk version.
4
votes
4answers
7k views

Loading remote images

In Android, what is the simplest approach to the following: Load an image from a remote server. Display it in an ImageView.
2
votes
2answers
449 views

Android:Issue Image resolution

Problem occurs while using high resolution image in device. imageview a; InputStream ims = getAssets().open("sam.png");//sam.png=520*1400 device=320*480 or 480*800 Drawable ...
6
votes
2answers
13k views

How To Display Border To Imageview?

Friends How To Display Border To Imageview ? I Want To Result Like Mobile gallery all image display with border. plz give me ans thanks for advance....
17
votes
2answers
19k views

Android ImageView size not scaling with source image

I have a few ImageViews inside a LinearLayout. I need to scale down the ImageViews so that they maintain their aspect ratios whilst fitting inside the LinearLayout vertically. Horizontally, I just ...
2
votes
3answers
3k views

How do I modify TouchImageView with double tap to zoom in and out?

I am modifying the TouchImageView (https://github.com/MikeOrtiz/TouchImageView/issues) to have zoom in and out for when you double tap. I have started as per this post - How does TouchImageView works? ...
11
votes
10answers
6k views

Trying to get the display size of an image in an ImageView

I'm trying to get the real size of an image displayed in an image view. Actually my image is larger than the screen and the imageview is resizing the image to diplay it. I'm looking for this new size. ...
9
votes
5answers
12k views

android - save image into gallery

i have an app with a gallery of images and i want that the user can save it into his own gallery. I've created an option menu with a single voice "save" to allow that but the problem is...how can i ...
16
votes
6answers
15k views

Android fade in and fade out with ImageView

I'm with some troubles with and slideshow I'm building. I've created 2 animations in xml for fade in and fade out: fadein.xml <?xml version="1.0" encoding="UTF-8"?> <set ...
11
votes
2answers
4k views

What is the difference between src and background of ImageView

I am a little puzzled with using src or background for an ImageView. I know the former means the content of this ImageView and the latter means the background of the ImageView. But how to detect which ...
0
votes
2answers
7k views

add image to surface view in android

I want to add image to Surface view. So i used below code public class MySurfaceView extends SurfaceView implements SurfaceHolder.Callback{ Bitmap myicon; Canvas canvas; private Paint ...
4
votes
4answers
4k views

How to draw a Line in ImageView on Android?

I'd Like to know how to draw a Line on ImageView as user swipe their finger ? Could any body explain this ? Or perhaps any Link to get start on this.
3
votes
3answers
8k views

Android get image from gallery into ImageView

I`m trying to add a photo from galery to a ImageView but I get this error: java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=Intent { ...
3
votes
3answers
15k views

imageview drawable id in android

i had taken one imageview and set a drawable on it. Now i need to get id of drawable onclick event of imageview dynamicaly. How can i get it? anyone who already messes with it and have a solution pls ...
2
votes
2answers
6k views

Pinch Zoom in android for an imageview?

I have one requirement in which i have to zoom in and zoom out images on pinch.. Please if anyone can suggest me pinch zoom functionality for Imageview.????
2
votes
1answer
2k views

Listview shows wrong images

I have a ListView with an ArrayAdapter holding rows with a Image and a String. This worked fine until I decided that the loading of the images was to slow so I could not load the images before showing ...
9
votes
6answers
14k views

how to set text over an imageView

in my app i am placing an application bar on the top of the screen. The application bar looks as the following figure, now i want to place a text over the image, so that the image looks as follows ...
1
vote
4answers
2k views

Android how to identify item in listview with checkbox

I am really stuck here. What I want is not simple (for me), however I've been programming android a year now. What I want is a listview with an imageview, a textview, a checkbox, and another textview ...
2
votes
2answers
2k views

Animate image along path on Android? [duplicate]

Possible Duplicate: Android, move bitmap along a path? Is there a way to animate an ImageView's position along a path on the Android as with a CGPath on the iPhone? I have scoured the web ...
0
votes
2answers
2k views

how to compress image for imageview in android

Hi I want to show 3 or 4 image in my view that are stored in sdcard the size of images is 1-2 MB approximately. My problem is when I use image in imageview then it throw out of memory exception i ...
30
votes
3answers
30k views

android: stretch image in imageview to fit screen

I have an imageview that has its height and width set to "fill_parent" with a linearlayout that has the same values set. So i suppose this should set my images to fit the screen. But it only fits like ...
10
votes
1answer
12k views

How to highlight ImageView when focused or clicked?

A good example of this is either on the Twitter launch screen (the screen with the large icons that is seen when the application is first launch) or even just look at the application tray when you ...
7
votes
2answers
5k views

Core data images from desktop to iphone

I built a simple mac data entry tool I use with an iPhone application. I've recently added thumbnail which I added via an Image Well using simple bindings. Its a transformable data type which seems to ...
8
votes
1answer
17k views

Fit image into ImageView, keep aspect ratio and then resize ImageView to image dimensions?

How to fit an image of random size to an ImageView? When: Initially ImageView dimensions are 250dp * 250dp The image's larger dimension should be scaled up/down to 250dp The image should keep its ...
19
votes
7answers
20k views

Android Text over image

I have an imageView with an image, over that image I want to place a text. How can I achieve that?
10
votes
1answer
3k views

ImageView with rounded corners and inner shadow

I need to make a thumbnail view with rounded corners and inner shadow. Usually I'm making ImageView frames with 9patches, which have served me well so far, but this time the effect I need requires ...

1 2 3 4 5 6