android - radiobutton change text color -


i cant change text color in radiobutton:

  <radiogroup                         android:gravity="center"                         android:layout_width="fill_parent"                         android:layout_height="wrap_content"                         android:orientation="horizontal"                         android:color = "#000000"                     >                          <radiobutton                              android:id="@+id/contact_yes"                             android:layout_width="wrap_content"                             android:layout_height="wrap_content"                             android:color = "#000000"                             android:text="@string/yes" />                          <radiobutton                              android:id="@+id/contact_no"                             android:layout_width="wrap_content"                             android:layout_height="wrap_content"                             android:color = "#000000"                             android:text="@string/no" />                 </radiogroup> 

it's white, , change black?

thank in advance

android:textcolor="#000000" 

or

android:textcolor="@android:color/black" 

use textcolor change color of text

<radiobutton android:id="@+id/contact_yes" android:layout_width="wrap_content" android:layout_height="wrap_content" android:color = "#000000" android:text="@string/yes" /> 

Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -