В моем тексте редактирования я упомянул стиль текста как жирный, и текст редактирования был нередактируемым.Мне нужно, чтобы текстовое поле показывалось жирным шрифтом, но оно не работало.
Вот мой пример EditText:
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/layout_padding_5dp"
android:layout_weight="1"
android:theme="@style/TextInputLayoutAppearance">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/amount"
android:inputType="numberDecimal"
android:imeOptions="actionNext"
android:maxLength="7"
android:text="999.99"
android:textStyle="bold"
android:textColor="@color/black"
android:focused="false"
android:enabled="false"
android:editable="false"
android:textSize="18"/>
</android.support.design.widget.TextInputLayout>