如何在 Facebook 中实现编辑评论?
How to implement the edit comment in Facebook?
这是我的 activity :enter image description here
当单击 "E" 按钮时,我想将两个文本视图更改为编辑文本,并将 "E" 更改为保存按钮。
这就是我想实现编辑操作的方式,
知道怎么做吗?
代替使用 TextView 使用 editText 在按钮单击时启用禁用。在第一个状态下,在 E 按钮上启用 false 单击使其启用 True 并将按钮 Text E 更改为 Save,然后再次单击按钮 Make editText Enable false 并将按钮 Text 从 Save 更改为 E
我使用了:
textView.setVisibility(View.GONE);
editText.setVisibility(View.VISIBLE);
这是我的 activity :enter image description here 当单击 "E" 按钮时,我想将两个文本视图更改为编辑文本,并将 "E" 更改为保存按钮。
这就是我想实现编辑操作的方式,
知道怎么做吗?
代替使用 TextView 使用 editText 在按钮单击时启用禁用。在第一个状态下,在 E 按钮上启用 false 单击使其启用 True 并将按钮 Text E 更改为 Save,然后再次单击按钮 Make editText Enable false 并将按钮 Text 从 Save 更改为 E
我使用了:
textView.setVisibility(View.GONE); editText.setVisibility(View.VISIBLE);