ed2.setText(String.valueOf(day_x + "/" + month_x + "/" + year_x));
String value = ed2.getText().toString();
ed4.setText(value);
从ed2获取值后,我想在新的edittext中显示更改year_x,即ed4。
答案 0 :(得分:0)
试试这个=
ed2.setText(day_x+"/"+month_x+"/"+year_x);
String value = ed2.getText().toString();
ed4.setText(value);