public class Test extends Activity {
@Override protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
setTitle("Title Test");
setTitleColor(Color.RED);
Button button = new Button(this);
button.setText("Button");
setContentView(button);
}
}
xml 에서도 변경 가능
<TextView android:id="@+id/text1"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="100dip"
android:textColor="#ffff00"
android:layout_height="wrap_content"/>