Displays an arbitrary image, such as an icon.

learn more… | top users | synonyms

0
votes
2answers
48 views

ListView row height with ImageView

I have a Listview with a custom rows which contains: Button TextView ImageView ImageView Button <?xml version="1.0" encoding="utf-8"?> <RelativeLayout ...
0
votes
4answers
50 views

Setting an ImageView from a For-Loop

This question may be a bit a tricky. I tried, but I am not really even sure what to search for, so I did not find any documentation on this. I have a 7x10 grid, and each grid has its own image view. ...
1
vote
2answers
30 views

Getting Content from Imageview in CustomListViewAdapter to share via Facebook

I was creating an Chat like CustomListview with a textview and and Imageview for Each Post like this: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
1answer
20 views

OverScroll animation on activity

I have an imageView on my activity and I implemented a fling gesture on it to change the image from a list og images, but i want to add an overscroll animation to my activity when it reach the end (or ...
0
votes
0answers
19 views

ImageView scaleType doesnot work on some device?

I have a problem with Android layout ImageView scaleType="fitXY". But it works fine on some devive like screen size like 320x480, 600x1024 ...
-2
votes
0answers
15 views

Is any way to Graffiti Effect on picture in ios? [closed]

I would like to implement a function, with your fingers graffiti on the picture, it is best mosaic effect.
0
votes
0answers
41 views

Android drag and drop setlayoutparams does not work on Android 2?

Try to implement drag and drop, move with imageview set layoutparams for imageview in Framelayout (x-axis offset) It seems my layoutparams work does not work on Android 2.x emulator. On Android 4 it ...
0
votes
1answer
56 views

How to use Array index in Ludo board

I just want to translate an image(Tokens) from bottom to top, left to right in Ludo board using animation. For this I have taken coordinates of every ImageView from where every token (red, blue, ...
0
votes
2answers
45 views

Infinite animation of imageview android

This is just a continuation of my unsolved question which can be found here: Animate ImageView For now, I managed to make the imageviews move using <?xml version="1.0" encoding="utf-8"?> ...
0
votes
2answers
70 views

How to dynamically change ImageView Height

I have a simple linear layout used for ListView's cell, and it has an imageview. The image will be downloaded from internet, so the size can be different sizes. However, I want to set the width of ...
0
votes
1answer
51 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
2answers
32 views

android-TextView setText in Html.fromHtml to display image and text

I try to display the text and image in Html.fromHtml() but it is doesn't work in image display. message = (TextView) findViewById (R.id.message); message.setText(Html.fromHtml( ...
0
votes
1answer
24 views

Is there a way to load a panoramic photosphere in an ImageView?

I know there are galleries like SphereShare.net to open and share panoramic photos in form of spheres. But, what should be the way to load the sphere in my app?
0
votes
3answers
29 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
0answers
27 views

android ImageView view.getleft() returns different value than set with relativelayout,layoutparams.leftmargin

I have an ImageView that I wish to let the user drag and drop around the screen. Current code captures MotionEvents in the containing RelativeLayout and set the ImageView's layoutparams.leftmargin ...
0
votes
2answers
24 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 ...
0
votes
1answer
26 views

How to fill the screen with an image on Android

I'm working on mdpi, and when I add a imageView to the activity it doesnt fill the screen, I tried setting the scaleType to fitXY but the image didnt fill the screen, also I'm using a relativeLayout
0
votes
2answers
42 views

the picture is stretched in imageview android

i want to make animation with two pictures, but they are steretched. When i open this image like src in imageView- all is ok(image 1) , but when i run animation - it steretced(image 2). <ImageView ...
0
votes
0answers
36 views

How can we make an array-list for all the positions and use animation in imageview. Then call will be according to index of array list

I am making an Ludo game, for this i have to make array-list for all positions so that my tokens move for this i have taken coordinates in an array my array is like double aPowersOfTwo[] = new ...
0
votes
1answer
26 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 ...
0
votes
1answer
31 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 ...
1
vote
0answers
35 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
1answer
36 views

how to add imageview in view array?

I have created View[] regionView; variable and I am trying to add ImageView in this regionView array but I getting null pointer exception. Please help me how to add imageview in this View ...
0
votes
3answers
34 views

Using a Layout to Make Rounded Corners affect on image

I have some ImageView's and it seems like too much trouble to round the corners by using an ImageLoader or similar technique. Can I just simply make a LinearLayout to cover the image? (or set the ...
0
votes
0answers
26 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
63 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
1answer
27 views

Animate an ImageView by saving starting and ending position

I have an ImageView which can be moved by finger with a touchListener. I want the user to save two positions of the Imageview by pressing a button and after that, when he press to play the animation, ...
1
vote
1answer
81 views

How to Overlay a PagerTabStrip

I'm creating a simple android project that utilizes a ViewPager and a PagerTabStrip. Each fragment of the ViewPager consists of an ImageView and a ProgressBar. Right now, the ImageView of the fragment ...
0
votes
1answer
33 views

TextView Scale property in android

Is there a TextView equivalent to the following statement v.setScaleType(ImageView.ScaleType.CENTER_CROP); The code I'm using it in is... public View getView (int position, View convertView, ...
0
votes
0answers
45 views

ImageView from URL in ListView

firstable I want to say that I have made about 3 hours research and I can't find exactly what I need. So this is why I created a question. Ok so here's the deal: I'm trying to fetch an image from a ...
0
votes
2answers
37 views

ImageLoader is not giving right dimensions

I'm using the class ImageLoader to load an image from the internet, but when i want to get the width and the height of the photo, it gives me width:1 and height:1. The imageloader is the imageloader ...
0
votes
0answers
36 views

How to make animations with ValueAnimator and ImageView Matrix Scale in a constant speed?

Well this question is a little confusing that what it says is like this: public void onLoaded(final ImageView imageView, Bitmap loadedBitmap, String url, boolean loadedFromCache) { matrix ...
3
votes
2answers
126 views

Android - image view inside view pager issues

I have an image view inside view pager to display some images coming from url as shown in the screen shot below, However, the image should be filled( should occupy the complete view pager space). ...
0
votes
4answers
49 views

Image over Image in Android

I want to put Image over Image, Video Thumb and Play Icon over it. I want to put play icon in center over the video thumb image. I am using FrameLayout for it, but play icon does not view in center. ...
1
vote
1answer
18 views

How to assign Image Resource to ImageView with String in Android

I am trying to create a routine that will assign a card image to an ImageView without using something like this: R.drawable.card_10clover. I would prefer to use a string, but the way I'm doing it ...
0
votes
1answer
29 views

Scale scrollview contents to fill screen

I've a scrollview that displays a few bitmap imageviews to fill the screen. To support larger screens, I just want to scale the images. If I place a single imageview in the scrollview, it scales to ...
0
votes
2answers
54 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 ...
1
vote
1answer
47 views

Titanium : how to make a default “defaultImage” for all elements?

Is it possible to make a default "defaultImage" that will be used for all elements in my app (imageViews, coverflow, etc.) ? It will be great, instead of put "defaultImage" everywhere... I've ...
0
votes
0answers
41 views

How could I handle OnTouchEvent in ViewPager

In my viewPager, the imageview can zoom in or out. I use the TouchImageView(extends ImageView) to replace the view of ViewPager. I really zoom in or out my imageview, but the ViewPager couldn't ...
0
votes
0answers
42 views

universalimageloader for imageviews inside listviews

I'm planning to use universalimageloader library by Sergey Tarasevich in my application which is very easy to implement and use. The problem is, in the google io session of "the world of listview", ...
0
votes
1answer
34 views

displaying images from camera in image view

I'm writing an app that displays an image using an image view, but it does not display images taken from the camera. I'm using a galaxy nexus on stock android 4.2.2 here is the code: public class ...
1
vote
2answers
58 views

Unable to load a image from php link in android imageview

Unable to load a image from php link in android imageview. I tried the following code Android image view from url but it does not work for ...
0
votes
0answers
63 views

Periodic RemoteViews setImageViewBitmap causing excessive Garbage Collects in Android AppWidget

After some work with android AppWidgets I found myself being severely limited by the fact that android does not support custom views in AppWidgets. I therefore decided to work around this issue. I ...
0
votes
0answers
73 views

Android Imageview setOnTouchListener not working?

i'am using imageview on touch listener in this motion event not working why this happen any one have idea regarding this help me. here is my code img_View11.setOnTouchListener(new ...
0
votes
0answers
20 views

onTouch (CANCEL) remove the view

I am trying to draw a circle to center of the One more Image , it working fine but i need it in this way , when i touch(DOWN) the image add the view(draw circle) and touch(CANCEL) remove view. ...
0
votes
0answers
47 views

Android Bitmap.getPixel() returns wrong pixel color

I am a newbie using Android, and I have been several days already struggling with this issue. I would really appreciate any help. I am using TouchImageView from @Mike Ortiz, in order to have zoom ...
1
vote
2answers
54 views

Android ImageView dynamic ScaleType

I have an Android Activity with an ImageView. I put the ScaleType of the imageview on CENTER_CROP, so the image itself would not stretch. <ImageView android:id="@+id/imgView" ...
2
votes
2answers
42 views

How to delete or add imageviews to layout in android?

I am making a draw the shortest straw game and wondering if I can delete or add image views to my layout in MainAcitvity For example, the app starts with 3 image views/straws by default, and when the ...
0
votes
2answers
60 views

ImageView with no source does not honor layout, adding source does not repair layout

My base layout is a ListView of LinearLayouts, and each item in the grid is the FrameLayout below. I am downloading an image to the ImageView. Prior to the image being loaded, there is no content ...
0
votes
3answers
52 views

Click on item in android ListActivity not working

I have ListActivity with custom ArrayAdapter and following layout for list items: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...

1 2 3 4 5 52