0
votes
1answer
29 views

onTouch movement for ImageView?

I am relatively new to Android development. But I was wondering whether it is possible to move these images, so they can swap with each other in a grid. As it is a board game I am trying to ...
1
vote
1answer
19 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
3answers
36 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 ...
0
votes
1answer
22 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: ...
1
vote
0answers
36 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
3answers
47 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
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. ...
0
votes
2answers
63 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
50 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
1answer
55 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 ...
0
votes
0answers
40 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 ...
1
vote
0answers
36 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
0answers
39 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 ...
1
vote
2answers
60 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
65 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 ...
1
vote
1answer
51 views

Java: Make a gridbased boardgame

I need to make a boardgame where the user can select an image and use it as a board. The image part is easy, though I need help with how to make equal sized grids based upon user input. For example ...
1
vote
1answer
48 views

ImageView does not show up when added to a TableRow programmatically

Here are the relevant code bits: <HorizontalScrollView android:id="@+id/cards_scrollview" android:layout_width="wrap_content" android:layout_height="wrap_content" ...
-2
votes
2answers
66 views

Image loaded from a PHP script isn't displayed in ImageView

I want to fill an ImageView with an image saved on my localhost. I can display it in a browser fine but it doesn't get displayed in my ImageView. PHP script to display image: <?php ...
0
votes
1answer
21 views

can still see imageview even when invisible during rotation

I don't understand why this is happening. I set imageview so that it is invisible. Then rotate it. However I can see the imageview flicker on and off the screen. How come setvisibility isn't working ...
0
votes
1answer
22 views

Fill screen with ImageView on tap

I have a ListView in my application that has both text and images in it on each row. Now, when the row is clicked I'd like to zoom the image to fill the screen. On the next click it should collapse to ...
0
votes
0answers
74 views

Getting current image from horizontol scroll view android

I am trying to make a simple image gallery through which I can set wallpaper; I am using the below code to fetch the files from download folder and display it in scroll view. I am able to do that, ...
0
votes
0answers
32 views

Fetch Current image from horizontol scroll bar android

I am trying to make a simple image gallery through which I can set wallpaper; I am using the below code to fetch the files from download folder and display it in scroll view. I am able to do that, ...
0
votes
0answers
79 views

Drag&Drop and Scaling of imageView in Android view jumps back on start position

I programmed Drag and drop and scaling of an ImageView and it also works. But if I move it to a position and then want to move it again it first jumps to the start position. How can I fix this ...
0
votes
0answers
43 views

Downloading High Quality Image in Android

The question is not about how to download images in Android. I have seen lot of questions and examples to do that. All works great. My question is that: I have some images which I have uploaded on ...
-1
votes
2answers
75 views

Adding a ImageView from a resource to a LinearLayout in the javacode

I am new to programming Android but have some experience with Java, albeit still pretty inexperienced. I'll firstly post the XML document so it's easier to describe. <?xml version="1.0" ...
0
votes
1answer
67 views

How to resize a Bitmap while runnning in Android

I have a Panel class, which extends SurfaceView. The panel fills my whole activity. Inside the panel I draw a Ball - Bitmap (and some other stuff(lines/squares)). I add some pseudo depth. Something ...
1
vote
0answers
82 views

android change image width but don't keep aspect ratio

I need to change a image width original image like the first line below: but when I change the width it keeps the ratio resize the original image I need to do something like the third image can ...
0
votes
1answer
64 views

seting imageview to image causing crash

the activity crashes when I try and set any imageview image (either setImageBitmap or setImageView) it does this anywhere but in the one getview. I am trying to get an imageview array that I can use ...
0
votes
3answers
243 views

Create ImageViews dynamically inside a loop

I have written this code that loads an image to in ImageView widget: protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
1
vote
1answer
360 views

Android set bitmap to Imageview

Hi i have a string in Base64 format. I want to convert it ot a bitmap and then display it to an ImageView. This is the code: ImageView user_image; Person person_object; @Override protected void ...
1
vote
0answers
145 views

zooming an image view android

I'm developing a program to guide students in my college to go around the building. The only problem now is with zooming. I tried this code to zoom in and out an image view and it is working but the ...
1
vote
1answer
97 views

Android drag imageview with finger behaves strange

I'm implementing imageview drag function to my application. I have tried with below code but it's behaves strange.when I try to drag the image it's changes the position and during the movement it's ...
0
votes
0answers
70 views

How to overlay two or more images to half?

I'm just starting to develop on android but I can't find a way to overlay two or more ImageView objects to half as a sequence. For example the cards at the bottom of this screenshot: ...
0
votes
1answer
42 views

7165X786 size of large image could't be display in real device(Tablets)

I am having trouble of displaying the large image into android. I have tried to get this done by this custom- scrollable-image-view . I have used full View in my class and used the 7165*786 size of ...
0
votes
0answers
48 views

set image view by theme selected

im trying to make theme select option for my app all good beside imageview code : styles.xml <style name="AppTheme" parent="AppBaseTheme"> <item ...
0
votes
0answers
54 views

zoom and scrollable imageview in android

I have imageview in linearlayout, I want only to zoom this imageview without affecting other controls.When the image is zoomed the imageview should have the scrollbar if it crosses the size of screen. ...
0
votes
4answers
66 views

Setting an Image to ImageView dynamically

Please forgive me if this is a duplicate post but I tried and could not find anything on this subject. I have a blank ImageView in a layout and now I want to put an image there dynamically. Since ...
1
vote
0answers
26 views

Adding another counter system in this project, wont work [duplicate]

right ive got one counter in this project its all working but I'm trying to put another counter at the bottom of the screen that will do the same but will work on another count. So theres gonna be two ...
0
votes
0answers
106 views

Trying to fix my code but I keep failing :(

I've got this code that makes the image turn into a circle using a ListView. But as seen in the image, it dies when it goes to the end of the photo (the last few pixels are carried on when there not ...
0
votes
2answers
69 views

Only 1 of 10 ImageViews displaying - Android

One part of my code is a LinearLayout within a ScrollView. The ScrollView has 10 rows with 4 columns in each row. The first column is a small ImageView (either a red 'x' or green check mark). From ...
0
votes
1answer
101 views

Center TextViews/ImageViews vertically in unknown height - Android

Screenshot is posted below. In each row, the last 3 columns are not centered in their row vertically. The height of each row is unknown until after the screen is displayed. I am not sure but I am ...
0
votes
3answers
137 views

android:layout_below with ImageView not working

Do android:layout_...s work with ImageViews? From the picture you can see that all 10 rows are on top of each other so that means that q2Image is not accepting the code ...
0
votes
1answer
144 views

Javafx: drawing on ImageView with the mouse

Any way for drawing with the mouse on a ImageView..i don't know, using a canvas for example? Thanks
1
vote
2answers
88 views

Controlling loop excecution speed in java - Android

I know that this is a very small question. But I can't figure out the reason for this. In my program I run a loop 50 times. Inside the loop I generate a random integer 0 to 5 and load an image(a dice ...
-1
votes
5answers
143 views

Null pointer Exception at Onclicklistener in android

How to recover the problem of Null pointer exception in the place of menu.setOnClickListener(new View.OnClickListener() { , i have an imageview(menu) if i press on that another activity(about page) ...
7
votes
2answers
198 views

What could be the best way to view millions of images with Java?

You see that ? Each brick of the houses are images of 16x16 pixels. You see here a version based on simple JavaFX, with some Imageview moved on X and Y to give the effect of "construction". I ...
0
votes
2answers
113 views

ImageView.setOnTouchListener detects no long movements

I want to make a joystick with an ImageView. The user will touch the view and move the "stick" around. ivjoystick.setOnTouchListener(new View.OnTouchListener() { @Override ...
-1
votes
1answer
23 views

imageView android not recognized error

I am wondering why image view in java class pots error like ImageView smtin; And there's error. It dont recognize it like class... My project code is: package com.klemenjezakon.koceSLO; import ...
0
votes
1answer
68 views

ImageView is stretch when not supposed to be - Android

Column 0 is supposed to be a picture of either a red x or a green check mark. For testing purposes, I have only put an image in for row 1. As seen in the picture below, the red x image is long and ...
0
votes
3answers
184 views

Image in ImageView is stretched - Android

I am trying to make a small image appear on my screen. I want it to be a small square. With the below code, it shows up as a long flat rectangle. I have attached a picture of what it looks like ...

1 2 3 4 5