android TextInputLayout中的hint显示与重影

来源:互联网 发布:电力行业数据 编辑:程序博客网 时间:2024/05/21 22:51

素材设计库版本是 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>



原创粉丝点击