Android - TextInputLayout图标错误不会丢失

时间:2016-09-01 15:44:42

标签: android icons android-textinputlayout

我在活动日志中错过了textInputLayout中的错误图标。 它不是那个时候发生的,但现在只出现错误信息,但不会显示图标。

在我有表格的另一项活动中,如果我出现,但没有正确显示在您的网站上,有些会出现双重甚至漂浮在其他地方之上。

有谁知道发生了什么? :-S

谢谢

一个我输入文本的代码示例:

<android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
            android:paddingRight="24dp"
        android:layout_weight="1"
            android:paddingLeft="24dp">
        <EditText
            android:id="@+id/username"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="@string/prompt_username"
            android:maxLines="1"
            android:inputType="textPersonName" />
    </android.support.design.widget.TextInputLayout>

屏幕截图:enter image description here

1 个答案:

答案 0 :(得分:2)

我不确定这是否是主要原因,但我已设法解决。

显然版本:compile&#39; com.android.support:design:24.2.0&#39;有这个问题。任何人都可以确认吗?

我回到了编译&#39; com.android.support:design:24.1.0&#39;并已修复。