Java How do I use touchlistener to load new images on my Java Android app?

  • Thread starter Thread starter whitehorsey
  • Start date Start date
  • Tags Tags
    Android Java
AI Thread Summary
The discussion centers around implementing a touch listener in an Android app that loads a series of images based on user selections. The app initially displays six images representing days of the week. Upon selecting one, the goal is to replace these images with another set representing months. The current implementation only decrements a counter when an image is touched, without loading the new images as intended. To resolve this, it is suggested to modify the OnTouch event handler to include a call to a method that loads the new images after a selection is made. The code snippet provided shows an attempt to integrate this functionality, but issues remain as the new images are not loading upon touch. There is a recommendation to review the `addImages` method to ensure it functions correctly and to consider debugging techniques, such as using breakpoints, to identify any problems in the image loading process. The discussion emphasizes the importance of correctly implementing the touch listener to achieve the desired interactive experience in the app.
whitehorsey
Messages
188
Reaction score
0
On my app there are two rows that holds 3 images each (as seen in the image attachment). In the beginning, the 6 images are loaded and then when a person touches one of the images I want the other 6 images to be loaded. It's a series of choices. Ex. First 6 images would be to pick what day it is. After selecting the day, it would be replace the 6 images with 6 different choices for which month is it.

There is a series of choices in the series there is a list of the six choices that will be loaded.

images.jpg


I'm not sure how to use touchlistener so far I have this:

Code:
if(count > 1)
		{
			imageview.setOnTouchListener(new OnTouchListener()
			{
				
			    @Override
			    public boolean onTouch(View v, MotionEvent event) 
			    {
			        if(event.getAction() == MotionEvent.ACTION_UP)
			        {
			            count--;
			            return true;
			        }
			        return false;
			    }
			});
		}

If the there is more than one choice series (cause there will be some parts of the app where there won't be 6 new choices after selecting one), check to see if someone touched an image. However, the app right now loads the other choices from the series (day -> month) without waiting for someone to touch an image. How do I fix this?
 
Technology news on Phys.org
I know nothing about developing for Android nor in Java, but I know a thing or two about parentheses, and I am not convinced they look OK.
 
Borek said:
I know nothing about developing for Android nor in Java, but I know a thing or two about parentheses, and I am not convinced they look OK.
I thought that as well, but later decided they're probably OK. The OnTouchListener parameter

This part --
Code:
{
				
			    @Override
			    public boolean onTouch(View v, MotionEvent event) 
			    {
			        if(event.getAction() == MotionEvent.ACTION_UP)
			        {
			            count--;
			            return true;
			        }
			        return false;
			    }
			});
-- is an inline definition of the OnTouchListener method that is a parameter. The right brace on the last line matches the left brace at the top of what I copied. The right parenthesis matches the left parenthesis in setOnTouchListener(.

whitehorsey, your explanation of what you're trying to do is unclear.
whitehorsey said:
On my app there are two rows that holds 3 images each (as seen in the image attachment). In the beginning, the 6 images are loaded and then when a person touches one of the images I want the other 6 images to be loaded. It's a series of choices. Ex. First 6 images would be to pick what day it is. After selecting the day, it would be replace the 6 images with 6 different choices for which month is it.
After the 6 images are loaded and you touch one of the images, is the idea that 6 different images are to be loaded?

For something to happen when you touch one of the images, you need code in your OnTouch event handler to load the 6 new images. In your code, all that happens is that count is decremented.
 
Last edited:
Mark44 said:
is an inline definition of the OnTouchListener method that is a parameter. The right brace on the last line matches the left brace at the top of what I copied. The right parenthesis matches the left parenthesis in setOnTouchListener(.

Yes, it occurred to me that it can work this way, but I am not convinced it is the intent, it looks more like the code was pasted in the wrong place, producing code that is accidentally syntactically correct.

Or at least, in my code I would put parentheses differently, to not leave this "accidental correctness" impression.

But as I wrote, I know nothing about Java. I just started to learn yesterday.
 
whitehorsey, your explanation of what you're trying to do is unclear.
After the 6 images are loaded and you touch one of the images, is the idea that 6 different images are to be loaded?

Yep! I'm making a calendar so the first 6 images loaded are some random days of the week (mon, tues, etc.) . The person selects one of the days then it will load 6 random different images these will be to select the month.

For something to happen when you touch one of the images, you need code in your OnTouch event handler to load the 6 new images. In your code, all that happens is that count is decremented.

Thank You for catching that!

Code:
if(count > 1)
		{
			iv.setOnTouchListener(new OnTouchListener()
			{
				
			    @Override
			    public boolean onTouch(View v, MotionEvent event) 
			    {
			        if(event.getAction() == MotionEvent.ACTION_UP)
			        {
			        	count--;
			        	addImages(series.getList().get(index));
			            return true;
			        }
			        return false;
			    }
			});
		}

addImages passes the new 6 images. I tried touching the icons but nothing is happening.
 
whitehorsey said:
addImages passes the new 6 images. I tried touching the icons but nothing is happening.

I/anyone would need to see the addImages method to see how the method passes the images.

If you don't want to post it it's okay, but put breakpoints on the addImages method code and click on the cockroach (or ladybug) of eclipse. Sometimes it happens that whatever control one is using needs an explicit refresh (like ListViews sometimes, depending on how it is being used).
 
Last edited:
Thread 'Star maps using Blender'
Blender just recently dropped a new version, 4.5(with 5.0 on the horizon), and within it was a new feature for which I immediately thought of a use for. The new feature was a .csv importer for Geometry nodes. Geometry nodes are a method of modelling that uses a node tree to create 3D models which offers more flexibility than straight modeling does. The .csv importer node allows you to bring in a .csv file and use the data in it to control aspects of your model. So for example, if you...

Similar threads

Replies
1
Views
3K
Replies
5
Views
2K
Replies
6
Views
6K
Replies
6
Views
3K
Replies
49
Views
11K
Replies
4
Views
3K
Replies
9
Views
3K
Replies
37
Views
14K
Back
Top