I'm trying to implement a RadioButton that has a TextView on the top right part of it, like so:

enter image description here

The Textview will hold a number, once I've clicked something in the app.

I understand that I will have to extend RadioButton and add a TextView in there somehow, but I don't really understand how. I'd like to be able to configure all aspects of the button in xml (background of textview, if textview is visible and so on).

How do I go about this? Where do I start?

link|improve this question

feedback

1 Answer

1) You need to make sure it eventually will act and behave like a radio button, what ever you do make sure your radioButton can be added to RadioGroup.

2) This tutorial will give you some tips on creating custom components http://hugman.posterous.com/parameterizing-a-custom-components-to-promote and http://developer.android.com/guide/topics/ui/custom-components.html

3) If you want to edit the properties in XML editor, you need to create a constructor for your custom button that accepts XML attributes

4) If you simply want to do this inline, in a Layout add a radioButton and a textBox where ever you want. Pass all the touch events on the layout to the radio button sp that it toggles on touch and add the Layout to your RadioGroup(will need a little tweaking).

link|improve this answer
I know all of these things, and I really want to avoid doing number 4 because the RadioGroup element requires that the elements inside be RadioButtons for them to work as desired. The problem is that I don't know how to add the textview inside the extended RadioButton, and none of the links provided really explain that. There should be more documentation available on how you extend and create your own views :( Thanks though. – AmITheRWord Feb 25 '11 at 14:06
You can customize the RadioGroup to accept ViewGroup.You cannot 'add' a textView to a RadioButton. You can put RadioButton and TextView in a ViewGroup and define a new widget. – Veeresh Feb 27 '11 at 19:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.