I have an EditText with \"text = 0.00\". When I press the number 3, it should be like 0.03 and the second time when I press the number
To change the text;
multipleLine.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
MainActivity.myArray.set(pickId,String.valueOf(s));
MainActivity.myAdapt.notifyDataSetChanged();
}
@Override
public void afterTextChanged(Editable s) {
}