0
votes
1answer
56 views

Animate ImageView

Currently I'm developing a game. This is the details of my game: User should choose the correct image object. I want the images to accelerate from left to right. and when they reach the end, they ...
1
vote
3answers
32 views

Set ImageView usinh URL

I have an Image on my server. The URL for the image is something like : http://www.mydomain.com/123456uploaded_image.jpg I am trying to set this image to my ImageView. Here is the code that i tried: ...
0
votes
2answers
28 views

Alternate image in a imageview of screen

I have two images in my drawable folder and I desire to alternate the two images in my view every x time. I try to use a Asynctask but don't work and I can't found the solution. My xml Code ...
1
vote
0answers
115 views

Double Tap Error while implementing Universal Image Loader and ImageViewTouch

I am implementing a photo gallery in my app, so I used Nostras famous Universal Image Loader. However, it does not provide zoom in/out and double tap features which are currently the norm with photos ...
0
votes
1answer
138 views

ImageView layout on custom ViewGroup only moves “bounding box”, not image

I am trying to position an ImageView within a custom ViewGroup. Using the Graphical Layout in Eclipse, I can see that the bounding box is placed where I want, but the image itself stays at (0,0) of ...
0
votes
2answers
80 views

Programatically adding Custom ImageView in MainActivity

I want to dynamically add my custom ImageView to the MainActivity which already contains a EditText such that the whole space under EditText should be covered by ImageView. Then I would draw something ...
1
vote
2answers
445 views

Android : Imageview setImageDrawable(Drawable d) doesn't change images with animation

I want to change image in ImageView on button click.I am also doing animation on this imageView. For changing images i am using setImageDrawable() method on my imageView. The problem is that sometimes ...
0
votes
2answers
142 views

Android ImageView onclicklistenener not working

I am new to android and I tried to implement onclicklistener on image view. But it's not working.. Please help. When I click on the image it dose not responds. import android.os.Bundle; import ...
0
votes
2answers
159 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
64 views

dynamically load imageView

I have a layout where one imageView want dynamically load an image from drawable files. I want this I have a certain size imageView whatever drawable image, so you need to assign a size to upload. I ...
4
votes
1answer
471 views

How to Get Correct Path After Cropping the Image?

I want to Crop the Capture/Selected Image and Upload it on to server. What Problem I am Facing : After Cropping the Image i am not getting actual path for that Cropped Image. i have done my code ...
0
votes
1answer
351 views

Alpha-gradient on Android

I need to create an alpha-gradient on the edge of the ImageView. Preferably using only XML. Image for example
-1
votes
2answers
201 views

How to dynamically create a large number of imageView in Android

Hello I am making a jigsaw puzzle application and for that i have 16 made smaller bitmaps out of a large scaled bitmap with height = width = 240. Now I have to dynamically display these bitmaps in a ...
1
vote
1answer
61 views

ImageView Showing Odd Full Color Boxes

So I'm fairly new to Android dev, and I've run into an oddity with using ImageViews. Any pointers or suggestions would be very much welcomed! I'm setting the bitmaps for my ImageViews dynamically, ...
0
votes
3answers
130 views

Programmatically adding an ImageView relative to another one (Android)

I'm trying to programmatically add an ImageView then add another one that is relative to this one. My code: RelativeLayout mLayout = (RelativeLayout) findViewById(R.id.myLayout); ImageView anchor = ...
0
votes
2answers
97 views

Change image to a picture in Gallery

I am working on an application that needs to obtain a random picture from the android device's built-in picture gallery and then display it on the screen. Here's what I have to work with: -An ...
0
votes
3answers
184 views

Add text on different position on the images in Android

I have an image view. I need to display the various text on images.For each image the position of the text gets differ.I will give position value using x,y co ordinates of ImageView. Any guesses How ...
0
votes
0answers
32 views

Listview scrolling with imageview

I have imageview and listview. While scrolling the listview the images is also scrolled. Have any idea. Also want to make the first row of the listview is always in selected position.
0
votes
4answers
94 views

Why does my application crash when a particular image is used?

I have a workable codes that uses ImageView in the layout. The application could be run successfully before I restart my Eclipse. After that, my application crash whenever I uses the particular image. ...
1
vote
2answers
434 views

How to get Coordinates on touch Event on bitmap not of Screen

Greets , How can I get the Coordinates of the Bitmap not of the screen. Screen Coordinates got by event.getX(),event.getY() methods but not getting coordinates of the bitmap. Please help anyone.
0
votes
0answers
40 views

set ImageView above Textview

I just want to do a very simple think : I want to put an ImageView on full screen with just a simple TextView on his Bottom, not Over but just on his bottom.. I tried some combination but nothing ...
0
votes
4answers
271 views

How to set image in ImageView?

I need to put my own image on some imageView. So that's why I created folder named "drawable" in res folder , and copy my Image in this folder , but now I don't know how to set this image to my ...
2
votes
1answer
1k views

Touch Zoom under a ViewPager/FrameLayout

I have had pinch-to-zoom working pretty well for a few application versions now using Mike Ortiz's TouchImageView and a custom TouchViewPager so that it can work inside a view pager. This was working ...
0
votes
3answers
2k views

Android : Load image from web URL [duplicate]

Possible Duplicate: Loading remote images I am developing an application where I have a list in which each row has an image, this image is loaded from a web URL. below is my code ...
0
votes
2answers
326 views

How to display actual image based on file name in sqlite database

I have a local sqlite database file that looks something like this… _ID | Color_Name | Image_Name 1 | Red | red.png 2 | Blue | blue.png 3 | Green | green.png Etc. ...
0
votes
1answer
179 views

Android ViewPager not filling screen on Galaxy Nexus only

I'm trying to create a ViewPager that takes up the entire screen. Inside each fragment of the ViewPager, I have an ImageView that displays a semi-transparent picture. For some reason, when I try my ...
0
votes
2answers
119 views

How to set Width of the image (in ImageView) without changing the width of the ImageView?

What I am trying to do is change the width of the image in a ImageView without affecting the width of ImageView. ---------------------------------------------------------------- | ...
0
votes
1answer
149 views

How to load image from one xml file into another xml file?

I'm creating an camera app here. I've managed to click an image and display in an ImageView. I have a ImageButton on whose click takes you to another page. On the other page I want to display that ...
0
votes
2answers
201 views

Displaying images without locking the “main” thread

I've run into an issue with my application. I'm porting a series of internal iPad apps from iOS to android and image sequences are integral to their design. They require the standard fullscreen stop, ...
1
vote
3answers
577 views

ImageView OutofMemoryException

I have a problem when inserting an image in an ImageView. I have tried several ways to solve it but it still fails, the latest version follows. The image size is 3000x3000. Code: ImageView iv = ...
0
votes
1answer
187 views

Two imageview with separate touchevent

In my xml file, I have declared two imageview and later I add image in it by using setImageBitmap() method and also apply separate touch event. But here problem is that I can't move first image when ...
-1
votes
1answer
602 views

out of memory android imageview

on my person name device i get an error caused by out of memory but when i tried the same program on another device it seems to work just fine 05-14 21:52:54.625: I/dalvikvm(3561): Wrote stack traces ...
2
votes
1answer
137 views

Not able to open the image in new activity

Need help. It may be weird. First activity has listview(like lazyadapter) once i click the list it opens a new activity with description, title and image. But iam not able to display the image. Not ...
0
votes
2answers
200 views

ImageView as system overlay - wrong positions when rotating device

I'm currently trying to write an app for one special device running Android 2.3.4, that places a system overlay on a precisely defined spot on the screen. This is why I am positioning the layer using ...
0
votes
0answers
131 views

Force Close Error Dialog with moving Images between Activities android app

can anyone inform why when I move an image path (as string ) from one activity to another + show it in ImageView: it gave me (Force Close Error) ?? Note: that happened only if the image size is ...
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 ...
1
vote
4answers
901 views

Prevent ImageView from pushing views offscreen

I have a linear layout which contains an imageview and another linear layout which is a bottom bar on the screen. I use the bottom bar elsewhere in my project and I dont think it is the problem. The ...
0
votes
1answer
476 views

Dynamically display images in multiple position using single image view

I have an image view in my Layout <ImageView android:id="@+id/img" android:layout_width="340dip" android:layout_height="240dip" ...
0
votes
3answers
247 views

Place single image in multiple places without creating imageview

hi guys i need to place a single image in multiple places. suppose i need to place one image in 5 places in a layout but using only one <ImageView> id <ImageView ...
13
votes
1answer
6k views

Gallery of images using ViewPager + zoom in ImageViews

What am I trying to implement? A gallery of images using ViewPager. I choose this option because the smooth transition between images (I'm using ImageView), it is nice and quite easy to implement. ...
0
votes
0answers
276 views

Android slow RotateAnimation with much pictures?

Find some trouble with android animation. I have layout with RelativeLayout as root and have four ImageView's allocated in center of layout, and on top of them i have some picture. Next i have some ...
0
votes
2answers
391 views

setContentView makes my ImageView buttons unclickable?

Having some trouble figuring out why my ImageView buttons stop working after I change the displayed layout in my app. Please tell me if you see anything wrong with this code... The buttons are not ...
0
votes
0answers
300 views

ImageView button to make

I know that you can make ImageView button, pk has accomplished. I want to know is how to make the effect of click, for example click a red image and click it at the time of going to see and then goes ...
0
votes
1answer
151 views

How can i put text under each imagaview

In my project i am using images as button in horizontalscrollview. When i click an image it shows the image above the horizantalscrollview. What i want is to show a description text under the image ...
1
vote
2answers
431 views

In android, can I add child views to an ImageView?

I have a layout which contains a ScrollView which contains various components including an ImageView. I've found that I can add a TouchListener to the ImageView and the x,y values I get for the event ...
0
votes
1answer
2k views

set border to imageview dynamically

I have a xml file in drawable to set border for imageview know as imgborder.xml as below <?xml version="1.0" encoding="UTF-8"?> <shape ...
2
votes
1answer
1k views

Error inflating class TouchImageView

I'm trying to spruce up my image viewer activity by converting from an ImageView to a TouchImageView, per the answer here: How can I get zoom functionality for images? However, I get an error when my ...
1
vote
0answers
638 views

Android: Bitmap not shown in ImageView

I'm developing an Activity which loads a list of URLs of images and displays them in a Gallery view. For better performance I decided to asynchronously load the images and cache them on the SD card. ...
0
votes
1answer
255 views

Android touchevent— need help/suggestion according to senario

Now I have an ImageView and its a circle which is at the slightly below than center position (But this should not matter). I have written code onTouch of ImageView for ACTION_DOWN,ACTION_UP ,now ...
0
votes
1answer
264 views

Resize a bitmap as big that the screen can in Android

I'm using methods to edit the dimensions of a picture but I can't size it to take the entiere screen... I already try to put "FILL_PARENT" as an argument but it doesn't work! Here's my code fragment ...

1 2