有没有办法将第一个字符的按钮文本设置为大写字母并且所有文本都是大写?
布局:
<Button
android:id="@+id/q1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="13sp"
android:textColor="#ffffff"
android:background="@drawable/ic_btn_q_normal" />
活动:
final Button q1 = (Button) findViewById(R.id.q1);
q1.setText(answers[numbers.get(0)]);
q1.setOnClickListener(new OnClickListener() {
public void onClick(View v){
q1.setBackgroundResource(R.drawable.ic_btn_q_right);
}
});
answers[numbers.get(0)] 是我从数组列表中得到的文本。
我试过 q1.setAllCaps(true); 但这对我不起作用。
谢谢。