Html.fromHtml(string) は一部の hmtl タグを解釈できるため、html を使用してボタンのテキストのスタイルを設定できます。
XML ファイルでボタンを定義したと仮定すると、Java コードでこのようなボタンのテキストを設定できます。
Button button = (Button) findViewById(R.id.button1);
String styledText = "<big> <font color='#008000'>"
+ "My orders" + "</font> </big>" + "<br />"
+ "<small>" + "You have no current orders" + "</small>";
button.setText(Html.fromHtml(styledText));
// Attach a listener to the button that will make something
// happen when the button is clicked
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// Put your Intent code here
Log.d("onclick", "Button click registered");
}
});