从Edit-text获取文本时如何更改变量然后显示到另一个Edit-text中

时间:2017-01-16 15:31:58

标签: android

ed2.setText(String.valueOf(day_x + "/" + month_x + "/" + year_x));
String value = ed2.getText().toString();
ed4.setText(value);

从ed2获取值后,我想在新的edittext中显示更改year_x,即ed4。

1 个答案:

答案 0 :(得分:0)

试试这个=

ed2.setText(day_x+"/"+month_x+"/"+year_x);
String value = ed2.getText().toString();
ed4.setText(value);