我在使可编辑时遇到问题 - 虽然我可以使其可编辑,但我无法通过 .textviewintent在我的活动中,对于我的文本框,我有:xmlViewtextViewComment<TextViewandroid:id="@+id/textViewComment"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_weight="1"android:background="@drawable/textboxes_for_contact"android:textIsSelectable="true"中的文本确实是可选的,我可以通过长按复制它。textbox但是,我有一个活动 - 当在活动中单击编辑按钮时,中的文本应使用 .相反,我的是空的。EditViewtextViewCommentEditintentEdittextEditView当我删除文本时,通过意图成功传递。但。。。我无法在 .android:textIsSelectable="true"textview我也以编程方式尝试过,但这给出了同样的问题。commentname.setTextIsSelectable(true);在课堂上我有ViewContacti.putExtra("comment", commentname.getText());在课堂上:EditContactcomment = i.getStringExtra("comment");在我的班级里是:xmlEditContacttextViewComment <EditText android:id="@+id/textViewComment" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:inputType="textCapSentences" android:background="@drawable/textboxes_for_contact" android:maxLength="360" />任何想法,我如何使文本可选,同时也成功通过?这是一个已知问题吗?ViewContactintent
1 回答
绝地无双
TA贡献1946条经验 获得超4个赞
取代:
i.putExtra("comment", commentname.getText());
跟:
i.putExtra("comment", commentname.getText().toString());
看看你是否有更好的运气。
添加回答
举报
0/150
提交
取消