0

I want to realize the function like:

Male     ⊙
Female   ⊙  

How can I handle this using XML or code?

Li Che
  • 727
  • 10
  • 24
  • 1
    Possible duplicate of [Change the side the text appears on a radio button](http://stackoverflow.com/q/2631839/645270) – keyser Oct 30 '12 at 08:11

2 Answers2

0
android:button="@null"   
android:drawableRight="@android:drawable/xxxxx"   
android:paddingLeft="30dip"   
android:text="Male"
Curie
  • 186
  • 1
  • 2
  • 10
-1

You could but you will have to create a customized listview for that.

And at the initialization of your listview either in your XML file or in your code, you will have to specify which style should you choose aside from the native style.

Try looking at this link and also this, they might help.

gorbos
  • 311
  • 1
  • 7