gpt4 book ai didi

android - 我如何制作动态线性布局以在 android 中显示 textview?

转载 作者:行者123 更新时间:2023-11-30 04:54:50 25 4
gpt4 key购买 nike

我想创建一个动态 TextView 。当用户在编辑 View 中输入任何数据时按下确定,该数据将水平显示在 TextView 中。该数据将自动设置在 LinearLayout 或 RelativeLayout 中,如果该数据未放置在该行中,则自动设置在下一行中。

最佳答案

使用下面的代码:

editText.setOnEditorActionListener { _, actionId, _ ->
if (actionId == EditorInfo.IME_ACTION_DONE) {
str += ", " + editText.text
textView.text = str
return@setOnEditorActionListener true
}
return@setOnEditorActionListener false
}

并在布局中为 edittet 设置以下属性:

 android:imeOptions="actionDone"

关于android - 我如何制作动态线性布局以在 android 中显示 textview?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59441825/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com