安卓TextinputLayout使用方法

举报
第三女神程忆难 发表于 2021/03/25 23:56:54 2021/03/25
【摘要】 目录 导入依赖 TextinputLayout TextinputLayout标签基本属性 加入事件(java篇) 导入依赖 使用Design下的TextinputLayout前导入依赖步骤 在这个页面中直接找到design这个依赖,点击后再点击这两个窗口上的OK按钮,等待编译完成就完成导入了! (可能版本不一样,导入即可) TextinputL...

目录

导入依赖

TextinputLayout

TextinputLayout标签基本属性

加入事件(java篇)


导入依赖

使用Design下的TextinputLayout前导入依赖步骤

在这个页面中直接找到design这个依赖,点击后再点击这两个窗口上的OK按钮,等待编译完成就完成导入了!

(可能版本不一样,导入即可)


TextinputLayout

TextinputLayout在Design下,可以配合EditText或者EditText的子类使用,通常可以用来提示错误信息,或者显示提示字数限制等一些操作,还可以用来做密码框密码显示!这些使用,只需要在属于TextinputLayout的标签内加入相应的属性设置对应的事件即可,先来看下最简单的效果

当在这个文本框输入信息的时候,提示文字会自动向上移动;

第一个和第二个文本框使用了TextinputLayout,第三个未普通的EditText,我设置了显示字数长度和密码框的显示,看下我的布局文件


  
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. android:paddingLeft="20dp"
  9. android:paddingRight="20dp"
  10. tools:context=".MainActivity">
  11. <android.support.design.widget.TextInputLayout
  12. android:id="@+id/username"
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:layout_marginTop="20dp"
  16. android:hint="输入用户名(TextInputLayout)"
  17. app:counterEnabled="true"
  18. app:counterMaxLength="6"
  19. app:errorEnabled="true">
  20. <EditText
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content" />
  23. </android.support.design.widget.TextInputLayout>
  24. <android.support.design.widget.TextInputLayout
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:layout_marginTop="20dp"
  28. android:hint="请输入密码(TextInputLayout)"
  29. app:passwordToggleEnabled="true">
  30. <EditText
  31. android:layout_width="match_parent"
  32. android:layout_height="wrap_content"
  33. android:inputType="textPassword" />
  34. </android.support.design.widget.TextInputLayout>
  35. <EditText
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:layout_marginTop="40dp"
  39. android:hint="请输入手机号(普通的EditText)" />
  40. </LinearLayout>

 

TextinputLayout标签基本属性

属性 详细介绍
 android:hint=" " 提示输入内容
app:hintEnabled=“true” 是否显示提示(hint),默认为true
app:hintAnimationEnabled="true" 设置动画,是否有动画,默认为true
app:hintTextAppearance=" " 提示文本的样式

app:errorEnabled="true"

错误提示是否为显示
app:errorTextAppearance=" " 设置错误提示的样式

app:passwordToggleEnabled="true"

设置是否为可显示密码(上图右边的小眼睛)
app:passwordToggleDrawable=" " 定义显示密码按钮的图标
app:passwordToggleTintMode=" " 设置显示密码按钮的模式(screen、src_atop、multiply、src_in、src_over)
app:passwordToggleTint=" " 为显示密码按钮设置颜色
app:counterEnabled=" " 是否显示字数限制(如图第一个文本框右下角)
app:counterMaxLength=" " 最大的输入长度

app:counterEnabled=" "

是否显示长度限制(true、false)
app:counterTextAppearance=" " 长度提示的样式

加入事件(java篇)

实现目标:点击注册按钮不符合要求后输入框下提示字数不符合要求。(在这里只对用户名做出了限制,举一反三即可)

》》》AndroidStudio快速实例化-插件安装与使用《《《点击进入


  
  1. public class MainActivity extends AppCompatActivity implements View.OnClickListener {
  2. private TextInputLayout username;
  3. private TextInputLayout pasword;
  4. private EditText phone_number;
  5. private Button register;
  6. @Override
  7. protected void onCreate(Bundle savedInstanceState) {
  8. super.onCreate(savedInstanceState);
  9. setContentView(R.layout.activity_main);
  10. initView();
  11. }
  12. private void initView() {
  13. username = (TextInputLayout) findViewById(R.id.username);
  14. pasword = (TextInputLayout) findViewById(R.id.pasword);
  15. phone_number = (EditText) findViewById(R.id.phone_number);
  16. register = (Button) findViewById(R.id.register);
  17. register.setOnClickListener(this);
  18. }
  19. @Override
  20. public void onClick(View v) {
  21. switch (v.getId()) {
  22. case R.id.register:
  23. submit();
  24. //判断字数,设置事件
  25. username.setErrorEnabled(true);//提示信息设置为可见
  26. username.setError("字数不符合要求");
  27. if (username.getEditText().getText().length() == 0 || username.getEditText().getText().length() > 6) {
  28. username.setError("字数不符合要求");
  29. } else {
  30. username.setErrorEnabled(false);//提示信息设置为不可见
  31. }
  32. break;
  33. }
  34. }
  35. //判断手机号输入是否为空
  36. private void submit() {
  37. // validate
  38. String number = phone_number.getText().toString().trim();
  39. if (TextUtils.isEmpty(number)) {
  40. Toast.makeText(this, "请输入手机号(普通的EditText)", Toast.LENGTH_SHORT).show();
  41. return;
  42. }
  43. // TODO validate success, do something
  44. }
  45. }

再来一遍布局文件


  
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. android:paddingLeft="20dp"
  9. android:paddingRight="20dp"
  10. tools:context=".MainActivity">
  11. <android.support.design.widget.TextInputLayout
  12. android:id="@+id/username"
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:layout_marginTop="20dp"
  16. android:hint="输入用户名(TextInputLayout)"
  17. app:counterEnabled="true"
  18. app:counterMaxLength="6"
  19. app:errorEnabled="true">
  20. <EditText
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content" />
  23. </android.support.design.widget.TextInputLayout>
  24. <android.support.design.widget.TextInputLayout
  25. android:id="@+id/pasword"
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:layout_marginTop="20dp"
  29. android:hint="请输入密码(TextInputLayout)"
  30. app:passwordToggleEnabled="true"
  31. app:passwordToggleTint="@color/design_default_color_primary_dark">
  32. <EditText
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. android:inputType="textPassword" />
  36. </android.support.design.widget.TextInputLayout>
  37. <EditText
  38. android:id="@+id/phone_number"
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:layout_marginTop="40dp"
  42. android:hint="请输入手机号(普通的EditText)" />
  43. <Button
  44. android:id="@+id/register"
  45. android:layout_width="match_parent"
  46. android:layout_height="wrap_content"
  47. android:layout_marginTop="100dp"
  48. android:text="注册" />
  49. </LinearLayout>

效果演示:

 

文章来源: blog.csdn.net,作者:第三女神程忆难,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/qq_40881680/article/details/82700917

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。