The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
25 views

Viewpager - How to set Image size to full screen?

I'm using the source code from this tutorial And I want to make all the images full screen when I display them. How do I do it?
0
votes
1answer
26 views

Android Imaging: Programmatically add small image to overlay in a larger image

A newbie here on Android. I have an image taken from the camera. I want to add a smaller image (w. transparent background) in the middle of the image. I want to do this programmatically... How do ...
0
votes
0answers
33 views

how can I get image id on button click on and get off image id on button click off

I want to add a picture from my gallery to favorite categories when I click on the button and delate from favorite categories when I click off the button.I dont know really how to do this.I'm new in ...
0
votes
1answer
55 views

OutofMemoryError while trying to construct Bitmap from byte Array

I am fetching byte array from blob type while is stored in db, it works for small image but when image size is more than 200kb it gives me an error of outofmemoryerror. What should i do to overcome ...
0
votes
2answers
42 views

error at setContentView - android.view.InflateException

I have a splash screen which shows a image for 2 sec. The image is a PNG image. When I start my APP sometimes it crashes with the following error messages. The exact line where my app crashes is ...
2
votes
1answer
42 views

Issue on image size, while adding it programmatically

I have a little (& bit tricky) problem and could not solve from many hours by myself. The problem scenario is: I'm adding TextView s (i.e. Titles) and related (click-able) ImageView s ...
0
votes
2answers
68 views

Android - How to apply diffenernt Image Effects on bitmap like sepia, blackand white, blur etc

I am not having any idea of how to apply different effect on Image, I have seen the EffectFactory class and Effect class in effect class there is one method apply but I am not sure what to pass in ...
-1
votes
1answer
53 views

How to abort or cancel image upload HttpPost?

I am not able to abort image upload at all. I've googled it many times searching for any way to abort HttpPost and all failed. If I cancel the process image still uploading, tell it's finished. Please ...
0
votes
0answers
40 views

Re-size bitmap and then set as wallpaper

I'm trying to re size a bitmap and setting it as a wallpaper, but setting it as a wallpaper works great but, seems I have a problem scaling the bitmap to fit the height of the screen, so part of the ...
0
votes
2answers
126 views

Set image in button android

Hi i have set an image in button using the following code. But am failing to add multiple images to the button btn.setCompoundDrawablesWithIntrinsicBounds(null, null, null, ...
2
votes
1answer
142 views

analyze frames while recording video on Android

I'm fairly new to Android programming. I encountered a problem, for which I didn't find a solution until now. I want to record a video with the camera of the Android phone and while recording this ...
0
votes
1answer
133 views

Changing stroke color changes previous strokes color

I'm trying to make an android kids coloring book app, and when I'm firstly drawing with one color its ok, but when I change the brush color, all the previous coloring changes color as well. What can ...
1
vote
1answer
58 views

Android storing image and view it in gallery [duplicate]

I am storing image from an imageView which is available as bitmap. I am storing the image as test.jpg in the external memory although the image gets saved by that name (I confirmed by using a file ...
0
votes
0answers
65 views

Maintaining the aspect ratio of the image while downloading image from url and scaling afterward

I in application i am downloading an image of width 50 and height 50. and displaying in imageview using bitmap. Now on the click of image i want that image to resize and fit to screen, and when i am ...
0
votes
0answers
171 views

Doing Action_Pick Image Gallery Android on specific folder

I can open the directory, if Intent Action_View.. But if Intent Action_Pick.. (Force Closed) Maybe somebody know what my fault about this code.. public void onCreate(Bundle savedInstanceState) { ...
0
votes
3answers
339 views

How can i upload an image to .net WebService from Android

I'm trying to upload image to webService but I couldn't do it and I searched lots of topics on here and on the internet but could't find good solution. When I run this code I'm getting Bad Request ...
17
votes
7answers
871 views

Image Resize, Rotate, Move by putting some indicator around the Image

I would like to Scale, Move, Resize Image. I would like to surrond the image with Indicators which guide user what operation these indicators perform i.e. Moving, Rotating, Scaling. I've tried ...
0
votes
0answers
18 views

How do I delete with crop photo

I want to select photo in my albüm. And I crop the photo. But new photo is saved. What can I do ? private Bitmap Photo; @Override protected void onCreate(Bundle savedInstanceState) { ...
0
votes
1answer
91 views

Image annotate in Android

Is there any library is available for annotating the image in android. I would like to know how we can annotate the image which is captured from camera. Can any one help on this. Thanks!
2
votes
3answers
937 views

Error No resource found that matches the given name (at 'src' with value '@drawable/button1')

I thought the book had incorrect code. Tried at my home location and it worked. Found out that my eclipse was actually broken. Had to remove and re install eclipse. This is my first post here so if I ...
0
votes
2answers
400 views

Out of memory issue while loading bitmaps in Android

I am using Fedor's code(https://github.com/thest1/LazyList) for loading bitmaps. I have modified a few lines of code, according to my requirement. I am getting out of memory error when ever the heap ...
0
votes
0answers
180 views

how to dynamic resolution image crop android

i want to croping image with dynamicaly resolution with Intent("com.android.camera.action.CROP"); private void performCrop() { try { final int width = getWallpaperDesiredMinimumWidth(); ...
1
vote
3answers
89 views

How to set bitmap on existing bitmap as its background

I have two bitmap lets say bitmapA and bitmapB. I want to set bitmapA as background of bitmapB and I have to perform this on runtime.Give me some idea how can I do it.
3
votes
1answer
139 views

How to access images from different drawable folders

I have created an application which runs on a mobile device. But now I want it to run on Tablet too. I have defined maximum of my images in "Drawable-mdpi" folder and a few of them resized for xhdpi ...
1
vote
0answers
133 views

Default Image Viewer for Application Images

My Question is I will show some of the images from sd card using the below link http://vikaskanani.wordpress.com/2011/07/20/android-custom-image-gallery-with-checkbox-in-grid-to-select-multiple/ ...
0
votes
2answers
114 views

retaining image orientation after compression

here is my code // // reading an image captured using phone camera. Orientaion of this // image is always return value 6 (ORIENTATION_ROTATE_90) no matter if // it is ...
0
votes
1answer
117 views

Collage of images in android

I want to create an android application to create collage of images. Multiple images should be able to move, zoom and rotate on touch. I have tried to achieve this in many ways, but every time it ...
0
votes
1answer
196 views

ImageButton LayoutProblem with setImageDrawable

I'm trying to set an image of an ImageButton at runtime. It should fill the width of the screen and use as much space in height as it needs to scale correctly. The ImageButton is declared as ...
0
votes
2answers
65 views

Downloading images sometimes only shown as a blank image

I download images from urls inside an asyncTask. I download 100 images and about 3-4 of them are only a piece of black image, it looks like the download was interrupted or something like that. So the ...
0
votes
1answer
85 views

How to convert a raw file to png in Android?

I got an app, this app downloads many pictures, but i store them with my own format. This is because i dont want android system to show them in Gallery, so these are my own pictures. I want to send ...
1
vote
0answers
54 views

Android - app crashed when adding too many images

My app needs to list texts and images for one particular activity. Each row of the list has 2 columns - 1 for image and 1 for string. It works if the number of images is small (ten or less). When it ...
0
votes
1answer
377 views

Image not loading through android webview

I have a webview that loads a webpage and sometimes in this webpage there are pictures. However, i have encountered 2 instances where the image does not load and they each give different outcome. ...
0
votes
1answer
396 views

NV21 image to Bitmap conversion

I am trying to convert NV21 image from a LG 3D Android mobile to bitmap so I could send it over TCP socket to the computer. At the moment it has to go through NV21->YUV->JPEG->ByteBuffer->Bitmap ...
1
vote
2answers
418 views

java.lang.OutOfMemoryError while posting BASE64 image in android

I am getting exception of out of memory in the below code. try { String strBase64 = BitMapToString(bitmap); bitmap.recycle(); JSONObject data = new JSONObject(); ...
0
votes
0answers
150 views

Search interface, custom suggestions icon rendering with the wrong size

i'm developing on Android a custom search interface and i'm adding custom suggestions. In my content provider i'm adding an icon to my custom suggestion by filling the Content Provider response ...
0
votes
2answers
63 views

why there is dependency among android sdks?

what i want to install is ARM EABI, but i have to select lots of sdks which i have installed, and it is terrible to download them all for broken network:( i just wonder, why there is so sophisticate ...
-1
votes
1answer
119 views

Application to display 3D model of the molecules in android [closed]

I need to develop an application that displays the 3D model of the molecules in android. Can anybody tell me how this can be achieved. Thanks in advance. Sundeep
0
votes
0answers
71 views

Load images later in a RSS android app

I made one app in Android to read a rss feed. Mi problem is that when I load the images in the item the activity is very slow to load. I want load first the text, and later the image, but I don't ...
0
votes
0answers
186 views

Android: Image Switcher and TextSwitcher Together in one activity

I am trying to implement Image Switcher and Text Switcher in the same activity. Both working good if done individually in individual activities. When we unite the programs to perform in a single ...
-1
votes
1answer
938 views

how to crop bitmap using com.android.camera.action.CROP

I read many example using com.android.camera.action.CROP, but they all say to crop image from galery or camera.. Anyone can tell me how to crop Bitmap using com.android.camera.CROP?? i had tried many ...
0
votes
2answers
2k views

Crop saved Image using com.android.camera.action.CROP on android

I have reads many question about this, but I still failed using this code... maybe anyone can corect my code... I want to crop an image from file that i know the location using ...
0
votes
1answer
187 views

Tap imageview to open image in Gallery on Android

I'm making an app, that is displaying an image in a single activity. Im using an json feed to get the url of the image, an it downloads the image via the lazyloader function, and then displays it in ...
1
vote
1answer
227 views

How to access an image that is stored internally

I have an application that takes a picture and stores the picture internally in a folder that I have created. After taking a picture I want to be able to access it so that I can email it. How can I ...
0
votes
1answer
115 views

How to add an audio file to an image in Android

I want to add an audio file to an image. So when someone gets that image he can extract the sound from it. I think we can add additional data to image header. But I don't know how to do that sort of ...
2
votes
3answers
166 views

Not Load Images from Web in my application

Hello i use Loading Images for Loading Images. But my images are not load. I work on that and develop one Demo program that is as follows. @Override public void onCreate(Bundle savedInstanceState) { ...
10
votes
4answers
2k views

Loading large images without OutOfMemoryError

I have a 5000 x 4000 px image which I want to draw onto a canvas. First I tried to load it from resources. I put it in /res/drawable. I used the following method: InputStream input = ...
0
votes
1answer
445 views

Fling gesture in Zoom Image View

I'm developing a ZoomImageView (which extends View rather than ImageView) that supports pinch/double-tap zooming and panning. I have everything working now but I want to add a Fling gesture to the ...
0
votes
1answer
672 views

URL image in GridView

I am trying to create a gridview and load some images from URLs to this gridview but there is an issue in loading images but i can't find it, can anyone help ? package com.images; import ...
-3
votes
1answer
52 views

Is there a way to make image processment with android? [closed]

I made a research looking for packages that could help me do image processment with android but not sucessfull, I would like to make something with face recognizement, so, does anyone know something ...
0
votes
2answers
88 views

my line of code is not executing in delay - android

The strangest thing is happening. In my onClick(View ...) I have blocks of code, mostly 'if/else' blocks. The sequence is (in pseudo-code, to save you lengthy code): I have an image that needs ...

1 2