android - RadioButton text which is in groupView -


i have few radio buttons in groupview , every radiobutton has own text. if text has more 1 line radio button text center aligned text i'd align radiobutton top of text.

my aim :-

i have:

   | text line 1  rb | text line 2     | text line 3 

i want:

     rb      | text line 1   | text line 2   | text line 3 

for setting text use rb.settext( text );

you can try way:

<linearlayout     android:layout_width="match_parent"     android:layout_height="match_parent"     android:orientation="horizontal" >      <radiobutton         android:id="@+id/rb1"         android:layout_width="wrap_content"         android:layout_height="wrap_content" />      <textview         android:id="@+id/tv1"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:text="@string/test_text" /> </linearlayout> 

Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -