当前位置:   article > 正文

【鸿蒙 HarmonyOS】UI 组件 ( 文本输入框 TextField 组件 )_在harmonyos应用开发中,哪个ui组件提供用户输入文字

在harmonyos应用开发中,哪个ui组件提供用户输入文字





一、布局中设置 TextField 组件



TextField 组件是文本输入框 , 允许用户在界面中输入指定的文字信息 ;

布局文件中配置 TextField 组件 :

<?xml version="1.0" encoding="utf-8"?>
<DirectionalLayout
    xmlns:ohos="http://schemas.huawei.com/res/ohos"
    ohos:height="match_parent"
    ohos:width="match_parent"
    ohos:orientation="vertical">

    <!-- 输入框组件 -->
    <TextField
        ohos:id="$+id:textfield"
        ohos:height="match_content"
        ohos:width="match_parent"
        ohos:layout_alignment="horizontal_center"
        ohos:text="Hello World"
        ohos:text_size="50"
        ohos:text_input_type="pattern_number"
    />

</DirectionalLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

其中 ohos:text_input_type=“pattern_number” 是配置输入的类型 , 这里是输入数字 ;


显示效果 : 刚进入界面时效果与 Text 组件相同 , 但是点击后 , 会显示光标 , 并弹出输入键盘 ;

刚进入界面时 :

在这里插入图片描述

点击后效果 : 弹出软键盘 ;

在这里插入图片描述





二、代码中获取并设置 TextField 组件



简单展示一下获取组件 , 并设置其显示文本 ;

package com.example.textfield.slice;

import com.example.textfield.ResourceTable;
import ohos.aafwk.ability.AbilitySlice;
import ohos.aafwk.content.Intent;
import ohos.agp.components.TextField;

public class MainAbilitySlice extends AbilitySlice {
    @Override
    public void onStart(Intent intent) {
        super.onStart(intent);
        super.setUIContent(ResourceTable.Layout_ability_main);

        // 获取布局文件中的 TextField 组件
        TextField textField = (TextField) findComponentById(ResourceTable.Id_textfield);

        // 设置默认显示的内容
        textField.setText("请输入手机号 : ");
    }

    @Override
    public void onActive() {
        super.onActive();
    }

    @Override
    public void onForeground(Intent intent) {
        super.onForeground(intent);
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

运行效果 :

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/312987
推荐阅读
相关标签
  

闽ICP备14008679号