gpt4 book ai didi

android - 在 EditText 中禁用用户输入但允许以编程方式输入

转载 作者:行者123 更新时间:2023-11-29 18:44:50 25 4
gpt4 key购买 nike

有没有办法禁用用户输入文本的选项,但允许系统将一些文本放入 EditText 中?

onFocus 方法会调出一个日历,我需要该功能可用,所以我认为 EditText 仍处于启用状态。

最佳答案

为什么不用 EditText,为什么不直接使用已经完成你想要的操作的 View :TextView?

您可以像这样在 XML 中定义一个,以便它在视觉上响应触摸:

<TextView
android:id="@+id/some_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:focusable="true"
android:background="?android:selectableItemBackground"
/>

关于android - 在 EditText 中禁用用户输入但允许以编程方式输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52211965/

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