1. ホーム
  2. android

[解決済み] ボタンの文字色を変更する方法を教えてください。

2022-02-17 04:26:39

質問

ボタンの文字色を変更する方法を教えてください。

解決するには?

これを試してみてください。

button.setTextColor(getApplication().getResources().getColor(R.color.red)); //TAKE DEFAULT COLOR

または

button.setTextColor(0xff0000); //SET CUSTOM COLOR 

または

button.setTextColor(Color.parseColor("#ff0000")); 

そして、xmlでは:

<Button android:id="@+id/mybtn" 
        android:text="text textx "  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"  
        android:textStyle="bold" 
        android:textColor="#ff0000" />  <-- SET TEXT COLOR HERE -->