Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
314 views
in Technique[技术] by (71.8m points)

android - Changing the position of radio button

Can I change the radio button position from left to right. I mean the green selected button will be on the right and the text on its left. Is it possible? (by default button left, text right)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It should be possible to use getCompoundDrawables() and setCompoundDrawables() to rearrange the drawables around the text.

To go one step further, perhaps you could perhaps implement your own CheckBoxRight widget based on CheckBox which did that in the onDraw() method after calling super.onDraw().

A final alternative would be to build your own widget directly from TextView and just setCompoundDrawables() appropriately after maintaining an internal state from an onClick() event handler.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...