Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

29
votes
5answers
21k views

How to have a transparent ImageButton: Android

<ImageButton android:id="@+id/previous" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/media_skip_backward" ...
13
votes
5answers
1k views

how do i keep the aspect ratio on image buttons in android?

i have 5 square ImageButtons that i want to have lined up side by side on the bottom of the screen. I have each one set (different id's) as: <ImageButton android:id="@+id/box1" ...
9
votes
1answer
8k views

Android Set ImageButton as Toggle

How can I have an imagebutton stay in the 'pressed' state when it is clicked? Basically I just want the background to be the depressed background, but I can't figure out how to set it. At the moment, ...
8
votes
2answers
26k views

Android ImageButton — can't get image in the center

I want to create an Android ImageButton in the xml file with a background image, and a smaller icon on top of that, right in the center. For some reason, it's not obvious how to do it, and ...
7
votes
6answers
6k views

Windows Phone 7 Image Button

I need to create an Image Button for my application like web-oriented style. I have an image 20x20 pixel and want an image button with the same dimension of the image. I tried to set this inside my ...
6
votes
1answer
897 views

Difference between a clickable ImageView and ImageButton

I'm just wondering if there is any significant difference between an ImageView that's set to be clickable, compared with an ImageButton? Is there any reason for using one over the other? Is there any ...
6
votes
4answers
807 views

How to remove ImageButton's standard background image?

In ImageButton I want to remove the standard button background image. In http://developer.android.com it is said, that one must define his\her own background image or set the background color to be ...
5
votes
6answers
18k views

ImageButton in Android

Can anybody tell me how to resize the imageButton to fit the image exactly..This is the code that i tried, but the image is placed at the position that i am locating using android:scaleType but i ...
4
votes
2answers
97 views

changing image of imagebutton till it is pressed

I want that in my android application, the ImageButton change its image when it is pressed and released, and when it is pressed released again, the image for ImageButton will be changed back , how to ...
4
votes
1answer
118 views

Layout changes are not reflecting in the application

I have created a button widget with custom images by referring this article. I have set images for onclick and onfocus. But I can only see the normal image for the button, nothing changes when I focus ...
4
votes
1answer
978 views

Unable to resolve drawable in attribute “src”

I'm having a problem when trying to load various images to an image button using an xml file in the drawable-mdpi folder. It worked for one button but doesn't work for the other. The code works for ...
4
votes
6answers
4k views

How to disable submit behaviour of asp:ImageButton?

I have a image button in a page which can be triggered on mouse click, by default it gets triggered on enter press also which i want to disable. I know about "UseSubmitBehaviour" attribute in ...
3
votes
1answer
173 views

iOS - removing borders around a Round Rect button

I got a simple question. I have a Round Rect button which contains an image (like ImageButton in Android). I want to remove the borders around the button, how do you do it?
3
votes
1answer
238 views

How to extend ImageButton correctly?

I want to extend the functionality of the ImageButton class, in a new class I choose to call "DialButton". To start off, I simpy extend ImageButton, and added nothing new. In my mind, this should be ...
3
votes
1answer
106 views

What the heck is wrong with this png file?

So I have a simple small PNG file with a transparency on it. I have it setup as a ImageButton and it will not display the image at all. I'll swap it with a different one with the exact same size and ...
3
votes
1answer
107 views

Stick buttons on some positions in an image

I basically need a photo (with zoom options that I almost have using this entry of the blog: http://android-developers.blogspot.com/2010/06/making-sense-of-multitouch.html) and the possibility of ...
3
votes
1answer
1k views

Android highlight an imagebutton when clicked

I am using an ImageButton. But I don get the highlight when clicked. I googled and many suggested to use selector where another image is displayed. Is there any way around this. by using only one ...
3
votes
3answers
1k views

Android: Center align ImageButtons

Hi I have 2 ImageButons like this current layout image I have tried everything to make it align properly in center of screen. As being new to android i don't have any other clues of what to do. How ...
3
votes
1answer
551 views

What should I use ImageButton or Button?

i have a button with two states(selected and unselected). the image of button is different for the states. Which one should I use? How do i set images and states? Please give suggestions(i am new to ...
3
votes
2answers
912 views

ImageButton in Android homescreen widget

I have a homescreen widget with an imagebutton. I have the button working with a pending intent, but I can't seem to figure out how to change the button image when it is pressed. I tried using a ...
3
votes
3answers
3k views

Android ImageButton with Image and Text

I want to have a button that has an image on top and some text on bottom. Both the image and text are decided during runtime, so I want to be able to combine ImageButton's setImageBitmap and Button's ...
3
votes
2answers
2k views

Android ImageButton setImageResource from variable

I want to setImageResource for an ImageButton programatically, based on a variable. For eg: if size=5, I want to setImageResource to R.drawable.five if size=6, I want to setImageResource to ...
3
votes
2answers
4k views

How do I change the tint of an ImageButton on focus/press

I have an ImageButton in my app and I need to change the tint of the image when the button is pressed/focused. I have the ImageButton set to get its src from an XML file which as follows: <?xml ...
3
votes
2answers
9k views

Android ImageButton with a selected state?

If I was using an ImageButton with a selector for its background, is there a state I can change which will make it change its appearance? Right now I can get it to change images when pressed, but ...
3
votes
2answers
1k views

Android: How do I switch the image of an ImageButton when the user releases the button?

I'm trying to make it so that as long as a user is touching the button, it shows one image, and when the user releases the button, it goes back to a default image. I'm trying to use a selector to ...
3
votes
10answers
18k views

asp:ImageButton not firing onclick event

I have a page that uses a master page, several RequiredFieldValidators, and the Web Toolkit autocomplete extender. The following code only shows the bare minimum of the page: <%@ Page ...
3
votes
1answer
6k views

Android - different image for rollover on ImageButton

Is it possible to specify a different image when the user's focus comes to an ImageButton? I want to display an image button on a LinearLayout and change the image when the user's focus comes on the ...
2
votes
4answers
1k views

Error : <item> tag requires a 'drawable' attribute or child tag defining a drawable

I created a state-list selector file item_bg_selector.xml in the drawable folder like this : <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item ...
2
votes
2answers
182 views

Change background position/gravity in ImageButton

I have the next view: And I want it to look like this: In the first one, the background of the green ImageButton is in the top-Left corner. And in the second, the background of the green ...
2
votes
1answer
127 views

Android: Why use imagebutton?

Warning: I am a noob so this might not be a "regular question". My question: Instead of using an imagebutton in Android isnt it the same to use an image, make clickable=true and then use that onClick ...
2
votes
2answers
132 views

how to change the ImageButton's image when it is pressed and released?

I want that in my android application, the ImageButton change its image when it is pressed and released, and when it is pressed released again, the image for ImageButton will be changed back , how to ...
2
votes
1answer
330 views

ImageButton from child layout onClick method not working

I have ImageButton on my View that is not working (method not called) when I try to click on it, but it is working if I click using the emulator keyboard. adb shell logcat doesn't print anything. my ...
2
votes
1answer
502 views

UpdatePanel not updating on imagebutton click event

I am creating a web page with SEVERAL updatepanels nested in ONE parent updatepanel. I have defined all of the triggers that are needed to let certain controls update controls that are in other ...
2
votes
4answers
5k views

How to show the text on a ImageButton?

I have a ImageButton and I want show a text and a image on it. But when I try <ImageButton android:text="OK" android:id="@+id/buttonok" android:src="@drawable/buttonok" ...
2
votes
3answers
742 views

Array of ImageButtons, assign R.view.id from a variable

Hey there. My app is going to be using an array of 64 ImageButtons (8x8), and they're all already declared in my XML Layout with names like one1, two5, eight8, etc. Rather than declare these each ...
2
votes
1answer
1k views

ASP.NET Master page DefaultButton override

I have a master page with a form element and the defaultbutton attribute set to a server-side ImageButton. On one of my pages I want to "override" the masterpage defaultbutton attribute by setting ...
2
votes
2answers
1k views

ImageButton using Transitions in Android

I'm trying to create a transparent (no button background) ImageButton that has a custom selector. I have the selector working against the button but I now want the selector drawables to cross-fade ...
2
votes
1answer
151 views

Stacking Two ImageButtons

I have two ImageButtons, and I am trying to stack one on top of the other. I essentially want to make a screen with two big buttons that each take up 50% of the available space. The code is below. ...
2
votes
2answers
3k views

Android ImageButton border?

I have a series of ImageButtons horizontally laid out in a LinearLayout. When I do a setBackgroundColor to GREEN, these ImageButtons all become GREEN rectangles, all connected that look like one ...
2
votes
2answers
542 views

Uniquely Identify ImageButtons placed Programmatically

I have been placing several ImageButtons programmatically in a TableLayout, every ImageButton has it's own Drawable resource as a Background. I use an XML description for the layout of the ImageButton ...
2
votes
1answer
677 views

Android widget ImageButton loses image when screen is rotated

I have a widget on my home screen with several ImageButtons which have default background images. Through the configuration activity, I can change the image on any of the ImageButtons. The problem is ...
2
votes
2answers
766 views

Borderless ImageButtons in WrapPanel

I am attempting to create a WrapPanel with seamless ImageButtons containing Artwork. I put together the following ContentTemplate in the hopes that it would provide the seamless look required; ...
2
votes
3answers
10k views

How to make ImageButton in Android automatically scale based on screen density?

I have an image put on an ImageButton, which looks good on a mdpi (medium-dpi) screen. However, when the device has a hdpi (high-dpi) screen, the image is still pixel-by-pixel accurate, which look ...
2
votes
1answer
615 views

ImageButton title tag

On an ImageButton using the AlternateText attribute renders an alt tag to the browser. <asp:ImageButton ID="imagebuttonStuff" runat="server" OnClick="imagebuttonStuff_Click" AlternateText="Make ...
1
vote
5answers
33 views

ASP.NET - CSS to Center Label Under ImageButton?

I'm trying to get a <asp:Label> to appear centered under a <asp:ImageButton>. Right now, the buttons are tied to objects in a List and so I have them all in a ListView control like this: ...
1
vote
1answer
24 views

ASP.NET - Displaying a Row/Grid of ImageButtons

I'm working on my first asp.net/web development application. Obviously, I'm very new to asp.net development, but I've been doing C# for quite some time and so can rationalize out the logic of the ...
1
vote
3answers
81 views

How to add a text under the image button in Android?

I want to add text under a image button, which are also clickable, and will be redirected to the same activity as the image button. basically it's like the app list in any android phone, e.g.
1
vote
1answer
56 views

Unable to see the image on the button in toolbar

I have been studying swing for developing gui applications since a few days. The following code aims to create a toolbar with an exit button (including the image "exit.png"). The problem is I am ...
1
vote
2answers
85 views

How to adjust Devexpress grid width dynamically?

I have a table with 3 tds, 1st td with 1% width and a image button control(Pin image) in it. 2nd with 98% and DevExpress GridView in it and the 3rd is also 1% width and a image button control. When ...
1
vote
5answers
85 views

Can't capture Click event for ImageButton - Android API Level 8

Problem: I am trying to capture click event of the ImageButton. I am not able to capture the clickable event.I have used foll code Question : Is setOnClickListener the proper way to capture ...

1 2 3 4 5 7