Android:fix input set Text,set selection to the last

This commit is contained in:
pengfei.zhou 2021-03-25 17:26:20 +08:00 committed by osborn
parent b006658fb9
commit 0290c7a929

View File

@ -84,7 +84,9 @@ public class InputNode extends ViewNode<EditText> implements TextWatcher, View.O
view.setFilters(newFilters);
break;
case "text":
view.setText(prop.asString().toString());
String text = prop.isString() ? prop.asString().toString() : "";
view.setText(text);
view.setSelection(text.length());
break;
case "textSize":
view.setTextSize(TypedValue.COMPLEX_UNIT_DIP, prop.asNumber().toFloat());