Android - 在运行时将 Button 转换为 TextView
是否可以在运行时将 Button 转换为 TextView onclick?
谢谢 克里斯
Is it possible to convert a Button into a TextView onclick during runtime?
Thanks
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你想做的是一个糟糕的设计。
隐藏按钮并显示 TextView。
What you are trying to do is a bad design.
Hide the button and show instead a TextView.
您可以定义一个同时包含 TextView 和 Button 的布局。
在运行时只需设置一个
setVisibility(Visibility.VISIBLE)
和另一个setVisibility(Visibility.INVISIBLE)
You can define a Layout that hold both TextView and Button.
At runtime just set ones
setVisibility(Visibility.VISIBLE)
and the othersetVisibility(Visibility.INVISIBLE)
你可以使用 ViewSwitcher 这是最好的技术
这里只需使用简单按钮更改编辑文本:)
例如
希望有帮助
you can use ViewSwitcher that is very best technique
Here just change edittext with button Simple :)
e.g
Hope it help