Tagged Questions
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
1answer
135 views
Clip round from image using xfermode in android
I need to create a rounded ImageView in Android. Now I use Canvas.clipPath() but hardware acceleration isn't supported by it. Of course I use View.LAYER_TYPE_SOFTWARE for this view.
public class ...
0
votes
0answers
39 views
Making a UITextView and UIImageView scroll together in a ScrollView
I have a scrollview set up in storyboard, and a textview and image view set up inside it. I want to have the image and text scroll together. I disabled scrolling in the textview and enabled it in the ...
0
votes
1answer
123 views
iOS adding a top bar as a subview
I am currently working on an app for iPhone where I have an Imageview showing off some images and via swipe I can change the images.
But I'm currently trying to add a subview that will be a top bar, ...
1
vote
1answer
236 views
How to display imageview slide out animation with another imageview beneath it?
I'm trying to figure out the best approach to displaying an imageview on top of another and with the slide of the finger, the top imageview will slide off the screen. Think of a deck of cards: As you ...
0
votes
0answers
44 views
Layer Ontop of a Layer
I am currently working on an app that allows the users to draw. What I am trying to do is have an ImageView under my view so that you can see the image view underneath it but can draw and cover up the ...
0
votes
2answers
281 views
ImageView within RelativeLayout is not matching parent
So, I'm trying to view a camera preview as a background with an imageview on top of it. Check this question out, that I've asked, to get a better idea of what I'm trying to accomplish. However, ...
1
vote
1answer
59 views
Android: What does return createFromPath method, if the image does not exsist?
If I have to set image in the ImageView, taken form my sdcard, I use the following code:
Drawable c = Drawable.createFromPath(imgPath);
if(c!=null)
imageView.setImageResource(c);
I would ...
0
votes
1answer
254 views
Android multiple canvas layers
I am trying to learn android and have written some simple graph plotting functions, I managed to get pinch zoom working but unfortunatly when it zooms the whole canvas zooms including the axis. What I ...
1
vote
2answers
95 views
setVisibility only works once on ImageView
I am trying to make views in a GridView become invisible and visible. I can make it work the first time I call INVISIBLE AND VISIBLE but subsequent attempts don't work.
private void ...
0
votes
1answer
139 views
Choosing Drawable to show on a imageview programmatically
I have say N images that i want to include in my android project resources, say image0 to imageN-1, how do I set an image view to show one of those drawables say imagei when i is known only at ...
-1
votes
4answers
178 views
Android view does not show up
I have this layout in my application, the problem is, the ImageView which has the ID overlay, does not show up over the others, and when I check the layout with Android SDK Hierarchy viewer tool, that ...
1
vote
2answers
123 views
how to find left,right,top,bottom View
I need to know left,right,top,bottom(LRTB) View of each View added in TableLayout
Scenario as below
TableLayout has 3 TableRows
Each TableRow has 3 ImageViews
Like a 3x3 matrix of ImageViews
XXX ...
2
votes
1answer
549 views
Avoid onMeasure and onLayout everytime ImageView Bitmap is set
This is my setup. I have a custom ListView with some fancy headers, which is inside a ViewPager. I'm maintaining a memory cache of images that having been downloaded and stored locally like any ...
0
votes
1answer
223 views
Problems invalidating a View
I have an app with a layout that loads some remote images. When the remote image is being loaded, a clock with 100 forced height is being displayed (i did it overwriting onDraw from imageview), and ...
1
vote
0answers
746 views
zoom in, zoom out and drag image android
I have code to add ImageView programmatically and make it image zoom in zoom out and drag image my code is as below
This code is for adding image view dynamically...
ImageView b = new ...
1
vote
3answers
135 views
Android draw a picture on top of this picture (dynamicaly)
I have RelativeLayout with ImageView.
I want to click on the picture and add the same picture on top. It must be dynamically, without calling onCreate method. It's red circle (transparent 10% - ...
2
votes
1answer
115 views
My code for swap the backgrounds of two views doesn't work
i have 20 imageviews with background image set.
When user clicks on one image and after on a second one, i would like that the two
imageviews can swap their image background.
With the code i ...
1
vote
1answer
577 views
Android - Advantage of using ImageView over background property of a simple View
I have been using Android for a while, and most of times I have used the background property of view objects to refer to some drawable in my project, mostly because i add some content or functionality ...
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
126 views
Android - Best Implementation of an expanding ImageView
I have a gallery and I am trying to expand an image that the user selects. Currently what I have is a new xml layout with the ImageView (and will eventually have a close and maximize button. I add the ...
0
votes
1answer
105 views
Difference between View and ImageView when outputting an image
When I output the image,I use View:
View.setbackgroundResource()
instead of ImageView:
ImageView.setImageDrawable(drawable)
I was wondering if there was a big difference?
-1
votes
1answer
305 views
Slide Unlocker ImageView ViewFlipper
I want to develop an unlocker. You can unlock by sliding to the right (just like on the iPhone).
Wich is the best method to implement this? Should I use a ViewFlipper and a GestureDetector?
I have ...
3
votes
2answers
690 views
add a bitmap to a view in Android
I have a vew, received by:
(ImageView) findViewById(R.id.photo)
That view currently has a bitmap on it. I want to add another bitmap, at the corner. The bitmap is retreieved by v.getDrawingCache(), ...
1
vote
2answers
283 views
Large source ImageView animation
What's the best image file format for Android in terms of memory? PNG is recommended for iOS as xCode does some magic with it.. Is it the same for Android?
I'm currently developing a big app with ...
0
votes
1answer
330 views
Android - can an imageView float around on the screen?
I have a quick question. Im currently using bitmaps that get drawn above a dynamic moving object on screen and when a user clicks them Im using some custom code to open a view with a registered ...
0
votes
1answer
517 views
Scale image within custom ImageView
I'm extending ImageView in order to manually scale an image within the view. I want to scale an image to fill the width of the custom view, and then draw it to the canvas, however, I'm unable to get ...
1
vote
0answers
256 views
Trying to reuse ImageView in Android
I am attempting to reuse ImageView objects in a RelativeLayout to avoid the cost of memory allocation. Specifically I create an ImageView programatically, and associate a fade animatiom with it. The ...
0
votes
1answer
443 views
Android - Set focus on a circle that I have drawn in my onDraw method
Android Question.
I have made a custom ImageView class and inside it I have an onDraw method which will draw a circle on particular pixels (using canvas). When I use this custom imageview and open up ...
1
vote
1answer
967 views
Android view problem - ImageView and Two TextView's
I'm trying to position two TextView's to the right of an image view (note this is not in a list). I followed this example which works but problems occur when I start to increase the text size and ...
0
votes
3answers
846 views
how to check if image is selected?
is there any way in which i have a image view which has to change its state/view once pressed and remain in its state and I should be able to check its state whether it was pressed or is in pressed ...
2
votes
0answers
506 views
Android: How to make position of View match the visual representation after animation
I am currently trying to animate a card game using an AnimationSet of Translate and Rotate animations. Although I am using setFillAfter(true) and see the card visibly move and stay in it's new ...
0
votes
1answer
1k views
Android - Square TableLayout
I have a need to create a perfect square TableLayout. The table is a grid of equal sized objects. The problem here is that in landscape layout, the table should take up the maximum amount of space ...
1
vote
1answer
488 views
Android animation's first frame is applied too early on ImageView
I have the following View setup in one of my Activities:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/photoLayout"
android:layout_width="fill_parent"
...
1
vote
0answers
4k views
add ImageView in a View?
I want to add an ImageView dynamically or from an xml into a class which extends View.....
pleas help
this is my code ...but it doesn't show any image...
first class
public class Draw extends ...
3
votes
0answers
641 views
Android: How do you scale multiple views together?
I'm trying to layer graphics one top of each other, like an icon over a background, with the second layer (icon) at a certain pixel offset from the top left corner of first layer (background). Since ...
0
votes
1answer
944 views
How to display an ImageView in a custom view in Android
I have an activity that calls a custom view when a button is pressed. The custom view runs fine until I try to add an ImageView to it. I have tried this in my xml that is called in my main activity ...
0
votes
1answer
3k views
Moving views inside a layout/view in Android
I have more than one question, but I'll start with the more important and problematic one:
I have a FrameLayout with a ImageView inside it. I need to get the size of the "usable area" of the screen ...

