Tagged Questions
0
votes
1answer
9 views
Setting content view hierarchy
I'm developing an app that implements a simple compass.
I'm creating and manipulating the compass itself in a class (Rose.java) that extends ImageView.
On my main activity I want to add the rose ...
0
votes
1answer
33 views
My ImageView doesn't refresh
I am trying to make an application that takes a picture and it display it on ImageView.
I succeded to make this but when I try to make a new picture the image from ImagaView is not refreshed.
For ...
0
votes
3answers
34 views
Scaling image in ImageView to full size
I have an ImageView and an extern image which gets load into the ImageView on start. The problem is: the image doesn't have the height of the device. The width is correctly full size. How can I ...
-3
votes
0answers
13 views
android: move image view through translation animation
i want to move my image view from one position to other.i have used multi dimension array for this.example is as follows-
new int[][]{
new int []{ 130,123,234},
new int []{213,354,564},};
now my ...
0
votes
1answer
13 views
Android: Resample bitmap as zooming in?
I have some large images that I would like to display to the user. I want them to have the ability to zoom in. I am currently using TouchImageView, and it is working, however, the ...
0
votes
0answers
5 views
Image not appearing/not found in android popup
String cardpath = Global.directory + longPressBtn.getText().toString() + ".jpg";
System.out.println(cardpath);
AlertDialog imageDialog = new AlertDialog.Builder(mContext).create();
LayoutInflater ...
-1
votes
0answers
17 views
Android custom dialog with progressbar(circle) and asynctask
is it possible to make dialog like in web - image preview full screen ?
press on thumb
openning fullscreen dialog with progressbar on it
asynctask getting image(Base64)
on asynctask finish show ...
3
votes
1answer
57 views
Paint View Zoom with Image not properly zoom : Android
I used canvas in order to zoom paint view with image including using setImageMatrix(). As shown below class use for zoom and draw line.But problem arised, that is entire screen became to zoom in/out ...
0
votes
1answer
36 views
how do i create stackable images in android?
I have a requirement where i have to rotate the image and stack 3 images on top of each other .
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
0
votes
1answer
20 views
Need to ImageView to download image, not use cache
I have and imageview that downloads a bitmap:
InputStream in = new java.net.URL(urldisplay).openStream();
bm = BitmapFactory.decodeStream(in);
The imagview then scales the image:
...
0
votes
0answers
8 views
i am getting “reacting on signal 3” on touch event
I need to make an ImageView which will simulate 3D rotation when swiping left to right, so i use this layout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
1
vote
0answers
19 views
Set buttons on image in specific locations
I'm trying to crate custom map in my application, the needed map is not Google map, its consists of image and small pins images, in other word its image view,,, i need to set buttons on this image in ...
0
votes
0answers
27 views
Android maginleft in RelativeLayout
I have a ImageView on a RelativeLayout, and I'm trying to hide a part of the ImageView on the limit of display. For that, i'm using the "setmargins" on a LayoutParams.
The problem is the image was ...
0
votes
1answer
28 views
How can save new position when animation is ended?
hi i'm work on animation(using TranslateAnimation()) i have 4 button(left move,right move,up button,down button) and a imageview i want now how can save the new position when the animation is ...
0
votes
2answers
31 views
Best way to display an image from server in android
I am trying to display an image in android. Image needs to be taken from the server. What should be the best approach for making sure that the image stored at the server fits with all android device ...
0
votes
1answer
22 views
Android Imageview auto scroll with an animation
I have a image(size is 600 * 400) and my imageview size is (300 * 400).
I want load this image and auto scroll from left to right (in 5 seconds) with an animation.
I try to use "scrollto" and timer ...
1
vote
0answers
29 views
Move ImageView through animation
I just want to move Tokens in Ludo board using animation. For this I have taken coordinates of every ImageView(position) of ludo board. From where every token (red, blue, yellow, green colors) will ...
3
votes
1answer
75 views
view with Zoom and draw line on canvas in Android
i am working on canvas.As shown below view class use for zoom and draw line.On click of zoom button pinch zoom working fine.but when i click on paint button i pass one Boolean as true which draw line ...
0
votes
4answers
20 views
Resize Imageview based on the parent height
I have a layout as defined below
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
...
0
votes
2answers
35 views
Android: How identify an ImageView by Tag or ID
I have on my activity several ImageView's that the user can move around the screen. How can I identify which ImageView is actually selected by the user? In Xcode I can assign a unique Tag to each ...
0
votes
0answers
11 views
First ImageView from Grid is not visible
I'm facing a very strange problem. I've read a lot of things about grids but I haven't been able to resolve my problem.
I have a Grid which contains only an ImageView for each item. I load two images ...
0
votes
2answers
33 views
Android ImageView Transparent where an image is not shown
I have an ImageView which shows bitmaps. The ImageView is setup as this:
imageView.setAdjustViewBounds(true);
imageView.setScaleType(ImageView.ScaleType.FIT_CENTER);
LayoutParams lp = ...
0
votes
0answers
18 views
Saving select Icons return from Package Manager
Im trying to add my own spin on CommonWare's project (Launchalot) and add a feature to save the icon's that are returned from package manager. I've added a checkbox, and a menu item i intent to ...
0
votes
1answer
28 views
Display an ImageView above the ActionBar
I want to know, how Google does this.
I read much articles, but none of the given solutions works for me.
I dont want the Actionbar to be Transparent. I dont want to Hide the Actionbar. I dont want ...
0
votes
1answer
27 views
ImageView be a square with dynamic width?
I have a GridView with ImageViews inside. I have 3 of them for each row. I can set correctly the width with WRAP_CONTENT and scaleType = CENTER_CROP, but I don't know how to set the ImageView's size ...
1
vote
1answer
12 views
ImageView not showing large images when targeting api level 14 (ICS) or greater
An ImageView in my app which normally displays OK has recently disappeared after I changed the target SDK version. After some trial and error, I have found that the image displays fine when I set ...
0
votes
1answer
19 views
What method(s) are needed from an imageview to save its current instancestate?
I have an imageview whose image is selected and changed by the user and I need to save its instancestate so the current image is displayed when the screens orientation changes or they switch to a ...
0
votes
1answer
22 views
imageview dissapears when setting width and height
I am trying to add imageviews dynamically to a table. To do this, I use the following code:
public void showLetter(String aLetter){
TableLayout letterTable = (TableLayout ) ...
0
votes
2answers
28 views
How to display .gif file in imageview?
My layout have lots of imageviews. I want to show .gif animated file in just one imageview. I tried Yash method (Adding gif image in an ImageView in android) but .gif file shown all layout. Other ...
0
votes
0answers
31 views
Adding markers on an image
I have an image in a custom imageview, which is a layout of a building. I need to add buttons(or markers like in google maps) in few places on the image with a longclick or drag and drop a button from ...
0
votes
0answers
40 views
Unable to change Image Resource in ImageView
I have the following code and i am unable to change my imageview resource in my program . I have a similar code in another fragment of my program and it works perfectly. I have tried to clean build my ...
3
votes
3answers
43 views
App crashes when adding an ImageView
I'm trying to add an image to my app but it keeps crashing and I can't conclude why.
I have multiple images in my app, but adding this one image seems to be problematic. Here's my xml (EDIT: full xml ...
0
votes
1answer
36 views
Change image dinamically into a ListView from JSON
I have the following code retrivieng data from URL in JSON format and updating a ListView. The code is working perfectly. In the xml layout, i have two TextView and one ImageView.
How can I update ...
-1
votes
1answer
34 views
Adding a custom image to AlertDialog [ANDROID]
I'm trouble trying to add an image to an AlertDialog. This image is not always the same, it's different everytime.
What i'm trying to do, is adding an image to the AlertDialog (if it's possible as an ...
0
votes
4answers
31 views
ImageView without scaling
I have a ListView that shows rows
This is the xml:
...
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
...
-2
votes
0answers
19 views
Ubuntu Crash when i add an imageview in layout editor on Eclipse [closed]
When I add an ImageView in layout editor on Eclipse ADT Ubuntu crash! I tested with Unity and Gnome Classic. I don't know what is the problem because i don't know the error. Is there any log to view ...
0
votes
0answers
13 views
No Accessor registered. Universal Tween Engine
I created the following accessor in order to add a simple tween to an imageview's position. I'm using a RelativeLayout.
public class ImageViewAccessor implements TweenAccessor<ImageView> {
...
1
vote
1answer
53 views
galaxy s4 and maybe all HD phones? out of memory error inflating layout
So this app I am working on, works just fine on a really old miserable Android 2.3.3 phone. However when running it on the GS4, the GS4 is throwing out of memory exceptions every time is has to load a ...
0
votes
0answers
47 views
Whats wrong with LayoutInflater?
In my app I have gridview. I want it to display complicated items with an image and some textviews.
Here is my inflatable item
<RelativeLayout ...
0
votes
1answer
24 views
matrix.postRotate(90) in image rotation
I can only rotate the image once and when I click on the button again, the image freeze and doesn't rotate. Please help me.
try{
//Bitmap bMap;
//Get ImageView from layout xml file
img ...
0
votes
2answers
34 views
alignTop and alignBottom get trampled by android:src
Setting android:src breaks alignTop/alignBottom, so the ImageView grows to the size of the src. Is there a way to enforce alignment again after setting the src?
<RelativeLayout>
...
1
vote
1answer
30 views
android image size from web
I'm trying to support mdpi, hdpi and xhdpi on my current App. The problem is that I'm fetching images from the web (profile pics). I'm using an imageview with height = 200dp the thing is that even ...
0
votes
2answers
47 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
2answers
56 views
Find images on ImageView Click
I have an activity with button whose image keeps on changing. Now on click of the button with particular image at that time should give proper toast. I am using timerTask to change the button image. ...
3
votes
1answer
4k views
Android Translate Animation
I have an ImageView that is 250dp above the bottom and with translate animation i want to move it to 50dp above the bottom.
I know how to use a translate animation, but I don't know what would be the ...
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 = ...







