在eclipse IDE中,按钮名称以黑色显示,并且不显示任何错误,
这是我的代码:
Button b1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b1=(Button)findViewById(R.id.button1);
b1.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent i = new Intent(MainActivity.this,secondactivity.class);
startActivity(i);
}
答案 0 :(得分:1)
试试这个:
button.setTextColor(getApplication().getResources().getColor(R.color.red));
或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" />