2
votes
2answers
59 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. ...
0
votes
2answers
63 views

Placing coordinates button android in 2.3.3

I created an app that should put a few buttons ( or imageview) at random, I pass the maximum and minimum values ​​and from there take the coordinates. The problem is that in 4.2.2 compilation is ...
0
votes
2answers
116 views

button click shows next picture from database in android

So I have been scratching my head and trying to figure out how to do it. TO give some more info: I have a gridview with a bunch of pictures taken from a database. When someone clicks a picture, a ...
0
votes
2answers
44 views

ImageView not getting the image.App not loading in the emulator.NullPointerException

i have an imageview and button in the xml file . loading the image1 and play song1.mp3 file.when the song is over it should load next image and play the song2.mp3 song it should go on until the last ...
0
votes
2answers
47 views

How to save result?

I'm a rookie in android programming. I have a small problem. When I click a ImageView, I make that ImageView invisible and set a Button to visible. My problem is that how do you save this? For eg, ...
1
vote
3answers
72 views

How to have an ImageButton behaving like a ViewGroup?

I want to have an image and over an image i want to put a shorter semi transparent view and put a textview inside of that view and finally i want all of these clickable which shows basic clicking ...
0
votes
1answer
110 views

Android: On changing the image on ImageView the Edittext disappeared

I am new to android app development on eclipse IDE. I am trying to make a basic app in which, on clicking the button both the image in ImageView as well as the text in EditText replaces with another ...
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
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, ...
0
votes
0answers
43 views

Bring a button in first view using dialog

I would like to bring a button (with its background) in first plane when clicking on it using a dialog. I tried with a scale, but it makes my button pixelised, because its just a zoom ! I have ...
0
votes
1answer
184 views

Show/Hide ImageView on Button click

I have a RelativeLayout completely created within java, not using xml layout. I have a few buttons on the left if my screen. I want to click on one button and show a default image from my ...
-5
votes
1answer
256 views

placing TextView on screen by percentage android [closed]

I am trying to produce an application for android. I want that the placement of the TextViews will not be decided in the XML file but by percentage of the screen by a function. For example, placing a ...
2
votes
2answers
247 views

How to change an ImageView visibility from a different activity after pressing a button?

I'm developing a simple android game divided into levels. I want a check icon (ImageView) to appear next to a level button (on level select menu) when that level is completed. A level is completed ...
3
votes
2answers
99 views

Why is my ImageView element mixed with my Button?

I'm new to this so forgive me. I've tried searching the documentation and the internet in general and I just can't figure it out. This is my XML: <RelativeLayout ...
0
votes
3answers
118 views

How can I make an ImageButton display just an image?

I have got a cool image (fancy with rounded corners). I want to implement that image in my android app. When clicked on it, I want it to darken a bit (like a button when pressed) and launch a new ...
0
votes
0answers
66 views

creating a subview above a subview that still rotates with iPad in xcode

I'm attempting to create two subviews, a button and an image, the image should go overtop of the button and the button should be black or a neutral color to act as a background. The problem is when I ...
0
votes
2answers
297 views

Android recycle bitmap when going back

My app lets u choose an image then when u click next on first activity it takes u to activity num. 2 and it shows the image u've choosen there in the imageview, and when u click back then re-click ...
0
votes
0answers
98 views

Text and button on imageview android dynamically

I like to make something like below images. We need to create overlay with multiple tag name and clear button. What is better approach and help code
0
votes
1answer
54 views

Android task to enable button

Good morning, I have a button called next, and I want when the user clicks on it and he imported/captured an image it takes him to the next activity. But when the user clicks on it and he didn't ...
-1
votes
1answer
777 views

Android stretch screen to fit bigger screen size

How can I enlarge my activity when it is running on bigger screen? I have tried android:scaleType="fitXY" for my imageview but it doesn't work. I have tried plenty of code i researched but none of ...
0
votes
1answer
131 views

Android sharing the activity image using a button

I want the image that the user made to be shared when he clicks on the button the image is an image he made using many features like paint etc .. I want when he clicks on the sharing button a sharing ...
1
vote
0answers
232 views

ImageView in GridView on working properly

I have a stock check application wherein the materials are displayed in a grid and each grid element has an image of the material, edittext of quantity , check button and an image which turns red or ...
1
vote
0answers
250 views

Why is my relative layout filling the screen rather than wrapping content when I add an image?

I have a RelativeLayout, we'll call this the 'slider', that I want to overlay on another RelativeLayout (by switching visibility="gone" and "visible") when "Add People" is clicked, but the overlay ...
0
votes
1answer
448 views

How do I code a button to start out greyed out and disabled until an imageview is populated?

I want to have a button greyed out until the user populates an imageview with a desired image from their phone's gallery. How would I code this to have the button's default state to be greyed out ...
0
votes
5answers
300 views

image on top of button android

Is it possible to add an image(view) on top of a button (which as a background image)? I'm porting an iOS app to Android and it wasn't a problem on iOS, but I'm wondering if it is the right approach ...
0
votes
2answers
425 views

Using if condition in Android ImageView

I am developing a game for android in which I will be using random images for it. My problem is I whenever there is a certain image in that image view (For ex. Image1 id generated randomly in the ...
0
votes
0answers
156 views

ScrollBy method not working correctly in android

I have a very simple demo, where i move a view from one location to another via scollBy(x,y) method, Here view is ImageView, but a strange thing is happening, when i decrease the y corrdinate the view ...
0
votes
2answers
146 views

Checking imageview resource on actionlistener rather than the id of the imageview

I have 16 imageview, each set to onBtnClick as a listner, inside this method it checks whether the imageview id corresponds to a specific id, I need to change this so it checks the image resource ...
0
votes
3answers
1k views

Perform Click ImageView Android

For an ordinary button I can do this: myButton.performClick(); and the system understands, that the button was clicked. Now I have an ImageView. What's the alternative of this function for ...
-1
votes
1answer
135 views

Android- Setting Wallpaper and save image error? [closed]

Hi i would like to know if anyone knows a tutorial on ow to set an image as and wallpaper with the click of an Button I tried using wallpaper manager, it worked but when i add my code to save the ...
0
votes
2answers
573 views

Compare ImageView Objects

I need to compare two ImageView objects either by their image resource (the cover image being used on the button) or the filepath of the image resource. Something along the lines of: final ImageView ...
0
votes
1answer
208 views

Scrollable list of buttons and images slowdown

I need to implement a list of images and buttons. I have 6 images serving as separators and a total 14 buttons with custom background. The list has a full screen (800×600) background, the separator ...
0
votes
2answers
3k views

Open ImageView with Zoom and Scroll

I would like to open an Image, in ImageView, from a button press. I need the image to be zoomable and scrollable. How would I best go about accomplishing this? Thank you! The Image can be either PNG ...
0
votes
1answer
61 views

on 4 buttons when clicked I want to change class and load a new image

I have 4 buttons that when click starts a new activity class. This works fine using switch case. But I want a drawable to show in an Image View based on which button was clicked. I'm not sure how ...
1
vote
1answer
67 views

Can we adjust the borders of buttons in Android?

I have a requirement where two buttons are side-by-side but are 'Rhombus' in shape. I'm trying to use the two images and place a buttons on top of them with the buttons being transparent so that the ...
1
vote
0answers
89 views

How to place buttons on a zoom&pan imageView

I would like a ImageView with buttons on it. The imageView should have zoom/pan functionalities, while the buttons are zoomed aswell, so they are always on the same position on the image. Atm I use ...
0
votes
1answer
49 views

Wich is the best strategy to have a button that when the finger is pressing on it haves one image and when not, another image?

actually i have a ImageView with a image, and a onclicklistener, and the image is working like a button. I need to add another image for when the button is pressed by a finger. I thought to do this: ...
1
vote
1answer
441 views

Drag And Drop a Button to a specific position in Android [closed]

I am developing an app, which needs a button to be dragged and dropped to a particular place ie., I have a button named "btn" at a specific position (Eg.default position (0,0) ), i need to drag that ...
1
vote
2answers
151 views

How to call a view by its given ID

I have a loop that creates 64 buttons, and within the loop, the button gets an id using button.setId(n) The question is, how do I call the button with a certain id to change its properties. ...
0
votes
0answers
183 views

How to enable button in onactivity result in android

I have two buttons in my activity. I am disabling one button while loading. If I click another button it will go to video record and come to activity. After that I am enabling the button I disabled in ...
0
votes
2answers
264 views

how to merge an image button into an imageview in an android app

i am working on an app for both ios and android. In a particular activity i am showing an imageview full of text. In that i am highlighting particular text with yellow color. When the user clicks over ...
0
votes
2answers
1k views

Add buttons on an imageView

I'm trying to display an imageView with some buttons on it. My problem is that I don't find any way to add my buttons at a specifics x and y on the image, can you tell me a function to do that? ...
6
votes
11answers
21k views

How can i give imageview click effect like a button in Android?

Hi I have imageview in my android app that i am using like button with onClick event given , but as you might guess it is not giving imageview a clickable effect when clicked , how can i achieve that ...
3
votes
5answers
2k views

drawable == drawable?

This is my problem...: In my activity I have an ImageView and a Button. I want the Button to perform an action ONLY when the ImageView displays a certain drawable. And yes, this means that the ...
3
votes
6answers
7k views

Android : ImageView getID(); returning integer

I've set up an onTouch class to determine when one of my 40 buttons is pressed. The problem I am facing is determining which button was pressed. If I use: int ID = iv.getId(); When I click on ...
2
votes
1answer
16k views

Android - Image button size help?

My imagebutton code wont respond to "fill_parent" and "wrap_content". Instead, it just shows the middle of the image (because it is a pretty big image). I tried setting specific values for the image ...
1
vote
1answer
744 views

Android - Image button (XML) isn't working?

I have three images in my drawable folder, and an XML Image Button code: <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android">\ ...
1
vote
2answers
2k views

Is it possible to have a Button with a background image with text on top?

I need button that has a replicated background pattern and normal button text on top - how to specify this in layout XML?