您的位置:首页 > 移动开发 > Android开发

android TextInputLayout中的hint显示与重影

2017-07-07 09:41 2221 查看
素材设计库版本是 com.android.support:design:25.3.1

1、只需要在EditText标签下写hint

2、不需要在代码中调用函数setHint

3、TextInputLayout和EditText的layout_width皆写为match_parent, 写为wrap_content会导致不显示hint,或者是发生重影。



<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<EditText
android:id="@+id/discover_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="标题"
android:inputType="text" />
</android.support.design.widget.TextInputLayout>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: