When creating a button (button), whatever text is transferred to it, it is shown in capital letters. The most ordinary code. Here is the beginning in xml:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" > <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content"> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="+" android:id="@+id/kn" android:onClick="onClick_kn"> </Button> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="в архив" android:id="@+id/archive" android:onClick="to_archive" /> This happens with all buttons in any Window, regardless of whether or not the style is applied to the buttons. The manifest has a theme: android: theme = "@ style / AppTheme". If you remove it, nothing changes.