Android textedit框字符显示不可读

时间:2016-12-21 22:03:05

标签: android android-layout

当将textedit添加到xml文件中的对话框时,出于某种原因,当我从真实设备或模拟器输入文本时,我的textedit框会显示条形图(即不可读的文本)(参见屏幕截图)。

如果我以编程方式执行此操作,则文本显示正常。有人有这个问题吗?能够解决它?

enter image description here

1 个答案:

答案 0 :(得分:0)

总之,我改变了布局重量。这是EditText的xml:

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ems="2"
        android:id="@+id/edittext_box"
        android:layout_weight="1"
        android:textSize="14sp"
        android:paddingLeft="5dp"
        android:textColor="?android:attr/colorControlHighlight"
        android:inputType="number"
        android:maxLength="4"
        android:minWidth="40dp" />