[文章]HarmonyOS实战——TextField文本输入框组件基本使用

阅读量0
0
4

1. TextField组件基本用法
组件说明:
  • 是Text的子类,用来进行用户输入数据的
常见属性:

  1. <TextField
  2.         ohos:id="$+id:text"
  3.         ohos:height="50vp"
  4.         ohos:width="319vp"
  5.         ohos:background_element="#FFFFFF"
  6.         ohos:hint="请输入信息"
  7.         ohos:layout_alignment="horizontal_center"
  8.         ohos:text_alignment="center"
  9.         ohos:text_color="#999999"
  10.         ohos:text_size="17fp"
  11.         ohos:top_margin="100vp"/>
复制代码


2. TextField案例——获取文本输入框中的内容并进行Toast提示
  • 通过TextField获取文本输入框中的内容并进行Toast提示
  • 新建项目:TextFieldApplication
ability_main
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <DirectionalLayout
  3.     xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4.     ohos:height="match_parent"
  5.     ohos:width="match_parent"
  6.     ohos:background_element="#F2F2F2"
  7.     ohos:orientation="vertical">

  8.     <TextField
  9.         ohos:id="$+id:text"
  10.         ohos:height="50vp"
  11.         ohos:width="319vp"
  12.         ohos:background_element="#FFFFFF"
  13.         ohos:hint="请输入信息"
  14.         ohos:layout_alignment="horizontal_center"
  15.         ohos:text_alignment="center"
  16.         ohos:text_color="#999999"
  17.         ohos:text_size="17fp"
  18.         ohos:top_margin="100vp"/>

  19.     <Button
  20.         ohos:id="$+id:but"
  21.         ohos:height="47vp"
  22.         ohos:width="319vp"
  23.         ohos:background_element="#21a8FD"
  24.         ohos:layout_alignment="center"
  25.         ohos:text="获取信息"
  26.         ohos:text_alignment="center"
  27.         ohos:text_color="#FEFEFE"
  28.         ohos:text_size="24vp"
  29.         ohos:top_margin="77vp"/>

  30. </DirectionalLayout>
复制代码


  • 因为要在 onClick 方法中用到 TextField 和 Button 这两个组件,所以要把这两个组件移到成员位置,使其成为成员变量后,onClick 方法才能访问的到
MainAbilitySlice
  1. package com.xdr630.textfieldapplication.slice;

  2. import com.xdr630.textfieldapplication.ResourceTable;
  3. import ohos.aafwk.ability.AbilitySlice;
  4. import ohos.aafwk.content.Intent;
  5. import ohos.agp.components.Button;
  6. import ohos.agp.components.Component;
  7. import ohos.agp.components.TextField;
  8. import ohos.agp.utils.LayoutAlignment;
  9. import ohos.agp.window.dialog.ToastDialog;

  10. public class MainAbilitySlice extends AbilitySlice implements Component.ClickedListener {

  11.     TextField tf;
  12.     Button but;

  13.     @Override
  14.     public void onStart(Intent intent) {
  15.         super.onStart(intent);
  16.         super.setUIContent(ResourceTable.Layout_ability_main);

  17.         //1.找到文本组件框对象
  18.         tf = (TextField) findComponentById(ResourceTable.Id_text);
  19.         //找到按钮组件对象
  20.         but = (Button) findComponentById(ResourceTable.Id_but);

  21.         //2.给按钮绑定点击事件
  22.         //当点击了按钮之后,就要获取文本输入框的内容
  23.         but.setClickedListener(this);

  24.     }

  25.     @Override
  26.     public void onActive() {
  27.         super.onActive();
  28.     }

  29.     @Override
  30.     public void onForeground(Intent intent) {
  31.         super.onForeground(intent);
  32.     }

  33.     @Override
  34.     public void onClick(Component component) {
  35.         //当点击了按钮之后,获取文本输入框的内容
  36.         String message = tf.getText();
  37.         //利用一个Toast将信息弹出
  38.         ToastDialog td = new ToastDialog(this);
  39.         //大小不用设置,默认是包裹内容的
  40.         //自动关闭不用设置,默认到了时间之后就自动关闭
  41.         //默认持续时间是 2秒

  42.         //设置Toast的背景
  43.         td.setTransparent(true);
  44.         //位置(默认居中)
  45.         td.setAlignment(LayoutAlignment.BOTTOM);
  46.         //设置一个偏移
  47.         td.setOffset(0,200);
  48.         //设置Toast内容
  49.         td.setText(message);
  50.         //让Toast出现
  51.         td.show();
  52.     }
  53. }
复制代码

  • 运行:

3. TextField组件高级用法

3.1 密码的密文展示
  • 当输入密码的时候会变成密文展示
  • ohos:text_input_type="pattern_password":表示输入的密码以密文的方式显示
  • 基本使用:
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <DirectionalLayout
  3.     xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4.     ohos:height="match_parent"
  5.     ohos:width="match_parent"
  6.     ohos:orientation="vertical"
  7.     ohos:background_element="#F2F2F2">

  8.     <TextField
  9.         ohos:height="50vp"
  10.         ohos:width="319vp"
  11.         ohos:hint="请输入信息"
  12.         ohos:text_size="17fp"
  13.         ohos:hint_color="#999999"
  14.         ohos:text_alignment="center"
  15.         ohos:top_margin="100vp"
  16.         ohos:layout_alignment="horizontal_center"
  17.         ohos:background_element="#FFFFFF"
  18.         ohos:text_input_type="pattern_password"/>

  19. </DirectionalLayout>
复制代码


3.2 基线的设置
  • 有的时候文本输入框并不是一个框,而是下面有一条横线,这条线华为官方叫做 基线
  • 把文本输入框使用横线表示,在上面加上一条基线,把输入框的背景颜色去掉

  1. <TextField
  2.         ohos:height="50vp"
  3.         ohos:width="319vp"
  4.         ohos:hint="请输入信息"
  5.         ohos:text_size="17fp"
  6.         ohos:hint_color="#999999"
  7.         ohos:text_alignment="center"
  8.         ohos:top_margin="100vp"
  9.         ohos:layout_alignment="horizontal_center"
  10.         ohos:text_input_type="pattern_password"
  11.         ohos:basement="#000000"
  12.         />
复制代码

  • 如果以后看到一条基线,然后在输入一些数字信息,这还是 TextField 文本输入框组件,只不过是背景色没有设置,让它跟布局的颜色一致了,看不到背景而已
3.3 气泡的设置
  • 当用鼠标长按选中输入的内容后,就会选中内容,前面的光标和后面的光标,以及中间选中的内容颜色会改变,华为官方给前、后的光标,以及没有选中内容状态下出现的小气球取名为气泡

  1. <TextField
  2.         ohos:height="50vp"
  3.         ohos:width="319vp"
  4.         ohos:hint="请输入信息"
  5.         ohos:text_size="17fp"
  6.         ohos:hint_color="#999999"
  7.         ohos:text_alignment="center"
  8.         ohos:top_margin="100vp"
  9.         ohos:layout_alignment="horizontal_center"
  10.         ohos:basement="#000000"
  11.         />
复制代码


  • 可以设置左边、右边,以及没有选中情况下的气泡
  • 气泡的图片、颜色都是可以自定义的
  • 以下用到的图片可自取:https://www.aliyundrive.com/s/wT22d1Vb1BV
  • 把左、右,以及中间没有选中的气泡图片复制到 media 文件夹下

  1. <TextField
  2.         ohos:height="50vp"
  3.         ohos:width="319vp"
  4.         ohos:hint="请输入信息"
  5.         ohos:text_size="17fp"
  6.         ohos:hint_color="#999999"
  7.         ohos:text_alignment="center"
  8.         ohos:top_margin="100vp"
  9.         ohos:layout_alignment="horizontal_center"
  10.         ohos:basement="#000000"
  11.         ohos:element_selection_left_bubble="$media:left"
  12.         ohos:element_selection_right_bubble="$media:right"
  13.         ohos:element_cursor_bubble="$media:bubble"
  14.         ohos:selection_color="#FF0000"
  15.         />
复制代码

  • ohos:element_selection_left_bubble、ohos:element_selection_right_bubble分别设置左右气泡显示的图片
  • ohos:element_cursor_bubble:设置没有选中时的气泡图片
  • ohos:selection_color:设置选中时内容的颜色
  • 运行:

4. TextField案例——长按查看密码明文
在一些APP中,登录界面密码输入框那里有个小眼睛,按住小眼睛后就可以看到密码的明文展示,松开小眼睛又恢复到密文状态了
  • 把“小眼睛”改成Button组件,实现的逻辑原理也是一样的
需求分析:
  • 按住按钮不松,将输入框中的密码变成明文
  • 松开按钮之后,输入框中的密码变回密文
新建项目:TextFieldApplication3
ability_main
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <DirectionalLayout
  3.     xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4.     ohos:height="match_parent"
  5.     ohos:width="match_parent"
  6.     ohos:orientation="vertical"
  7.     ohos:background_element="#F2F2F2"
  8.     >

  9.     <TextField
  10.         ohos:id="$+id:text"
  11.         ohos:height="50vp"
  12.         ohos:width="319vp"
  13.         ohos:hint="请输入密码"
  14.         ohos:text_size="17fp"
  15.         ohos:hint_color="#999999"
  16.         ohos:text_alignment="center"
  17.         ohos:top_margin="100vp"
  18.         ohos:layout_alignment="horizontal_center"
  19.         ohos:background_element="#FFFFFF"
  20.         ohos:text_input_type="pattern_password"/>
  21.    
  22.     <Button
  23.         ohos:id="$+id:but"
  24.         ohos:height="47vp"
  25.         ohos:width="319vp"
  26.         ohos:text="查看密码"
  27.         ohos:text_size="24vp"
  28.         ohos:text_color="#FEFEFE"
  29.         ohos:text_alignment="center"
  30.         ohos:background_element="#21a8FD"
  31.         ohos:top_margin="77vp"
  32.         ohos:layout_alignment="center"/>

  33. </DirectionalLayout>
复制代码

MainAbilitySlice
  1. package com.xdr630.textfieldapplication3.slice;

  2. import com.xdr630.textfieldapplication3.ResourceTable;
  3. import ohos.aafwk.ability.AbilitySlice;
  4. import ohos.aafwk.content.Intent;
  5. import ohos.agp.components.Button;
  6. import ohos.agp.components.Component;
  7. import ohos.agp.components.InputAttribute;
  8. import ohos.agp.components.TextField;
  9. import ohos.multimodalinput.event.TouchEvent;

  10. public class MainAbilitySlice extends AbilitySlice implements Component.TouchEventListener {

  11.     TextField tf;

  12.     @Override
  13.     public void onStart(Intent intent) {
  14.         super.onStart(intent);
  15.         super.setUIContent(ResourceTable.Layout_ability_main);

  16.         //1.找到两个组件对象
  17.         tf = (TextField) findComponentById(ResourceTable.Id_text);
  18.         Button but = (Button) findComponentById(ResourceTable.Id_but);

  19.         //2.要给按钮绑定一个触摸事件
  20.         //因为在触摸事件中,才能获取到按下不松或松开
  21.         //单击事件——只能捕获到点击了一下
  22.         but.setTouchEventListener(this);


  23.     }

  24.     @Override
  25.     public void onActive() {
  26.         super.onActive();
  27.     }

  28.     @Override
  29.     public void onForeground(Intent intent) {
  30.         super.onForeground(intent);
  31.     }

  32.     @Override
  33.     //参数一:现在触摸的按钮
  34.     //参数二:动作对象
  35.     public boolean onTouchEvent(Component component, TouchEvent touchEvent) {
  36.         int action = touchEvent.getAction();

  37.         if (action == TouchEvent.PRIMARY_POINT_DOWN){//表示按下不松的时候
  38.             //当按下不送的时候,将文本框中密码变成明文
  39.             tf.setTextInputType(InputAttribute.PATTERN_NULL);
  40.         }else if (action == TouchEvent.PRIMARY_POINT_UP){//表示松开的时候
  41.             //当松开的时候,将文本框中的密码变回密文
  42.             tf.setTextInputType(InputAttribute.PATTERN_PASSWORD);
  43.         }
  44.         //true:表示触摸事件的后续动作还会进行触发
  45.         //false:表示触摸事件只触发第一个按下不松
  46.         return true;
  47.     }
  48. }

复制代码


  • 运行:

5. TextField案例——搭建登录界面
  • 新建项目:TextFieldApplication4
细节说明:
  • Text文本(忘记密码了?)组件默认是左边放置的,加上 ohos:layout_alignment="right"就是右边放置了,同时也给个ohos:right_margin="20vp"和右边的屏幕有些距离。如果ohos:layout_alignment="right"属性不写,直接写ohos:right_margin="20vp,那么ohos:layout_alignment="right"属性就会失效,因为组件默认是放在左边的。
ability_main
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <DirectionalLayout
  3.     xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4.     ohos:height="match_parent"
  5.     ohos:width="match_parent"
  6.     ohos:orientation="vertical"
  7.     ohos:background_element="#F2F2F2">

  8.     <TextField
  9.         ohos:id="$+id:username"
  10.         ohos:height="50vp"
  11.         ohos:width="319vp"
  12.         ohos:hint="请输入用户名"
  13.         ohos:text_size="17fp"
  14.         ohos:hint_color="#999999"
  15.         ohos:text_alignment="center"
  16.         ohos:top_margin="100vp"
  17.         ohos:layout_alignment="horizontal_center"
  18.         ohos:background_element="#FFFFFF"/>

  19.     <TextField
  20.         ohos:id="$+id:password"
  21.         ohos:height="50vp"
  22.         ohos:width="319vp"
  23.         ohos:hint="请输入密码"
  24.         ohos:text_size="17fp"
  25.         ohos:hint_color="#999999"
  26.         ohos:text_alignment="center"
  27.         ohos:top_margin="10vp"
  28.         ohos:layout_alignment="horizontal_center"
  29.         ohos:background_element="#FFFFFF"
  30.         ohos:text_input_type="pattern_password"/>
  31.    
  32.     <Text
  33.         ohos:height="match_content"
  34.         ohos:width="match_content"
  35.         ohos:text="忘记密码了?"
  36.         ohos:text_size="17fp"
  37.         ohos:text_color="#979797"
  38.         ohos:top_margin="13vp"
  39.         ohos:layout_alignment="right"
  40.         ohos:right_margin="20vp"/>
  41.    
  42.     <Button
  43.         ohos:height="47vp"
  44.         ohos:width="319vp"
  45.         ohos:text="登录"
  46.         ohos:text_size="24fp"
  47.         ohos:text_color="#FEFEFE"
  48.         ohos:text_alignment="center"
  49.         ohos:background_element="#21a8FD"
  50.         ohos:top_margin="77vp"
  51.         ohos:layout_alignment="horizontal_center"/>

  52.     <Button
  53.         ohos:height="47vp"
  54.         ohos:width="319vp"
  55.         ohos:text="注册"
  56.         ohos:text_size="24fp"
  57.         ohos:text_color="#FEFEFE"
  58.         ohos:text_alignment="center"
  59.         ohos:background_element="#21a8FD"
  60.         ohos:top_margin="13vp"
  61.         ohos:layout_alignment="horizontal_center"/>



  62. </DirectionalLayout>
复制代码

  • 运行:


回帖

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容图片侵权或者其他问题,请联系本站作侵删。 侵权投诉
链接复制成功,分享给好友