今天写Android时发现Button控件中输入的字母全部都是大写,因为它默认是大写的,改一下button的属性就好了:
android:textAllCaps="false"
示例布局:
<Button
android:id="@+id/sin"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:textAllCaps="false"
android:text="Sin" />
运行结果: