在我的编辑文本中,我提到文本样式为粗体,编辑文本不可编辑。我需要以粗体显示文本字段,但它不起作用。
这是我的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>
而是使它android:enabled="false"
尝试如下
android:focusable="false"
android:longClickable="false"
机器人:启用=“假”
edittext不可编辑
<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:enabled="false"
android:textStyle="bold"
android:textColor="@color/black"
android:textSize="18sp"/>