将数字从按钮插入EditText中的选定位置

时间:2017-02-26 22:10:55

标签: java android xml layout

如何将编号(从按钮名称)插入EditText中的特定位置?

这是Example image

选择我使用:

et.setTextIsSelectable(true); et.setFocusable(true); et.setFocusableInTouchMode(true);

现在我正在使用此代码(但它没用):

Button b = (Button)v; // tapped button
String operations += b.getText();
myEditText.setText(operations);

谢谢。

1 个答案:

答案 0 :(得分:1)

你想要的是

StringBuffer SB = new StringBuffer();

这些辅助方法

int start = edittextObj.getSelectionStart();
int end = edittextObj.getSelectionEnd();
edittextObj.setSelection();