Merge "Fix wrong position of cursor in OwnerInfoSettings"

am: 2bcbc35b29

Change-Id: I37d5d73c9dc2dc64c6437c8e1a2786df616ee2f6
This commit is contained in:
Fan Zhang
2017-10-24 20:33:03 +00:00
committed by android-build-merger

View File

@@ -67,6 +67,7 @@ public class OwnerInfoSettings extends InstrumentedDialogFragment implements OnC
mOwnerInfo = (EditText) mView.findViewById(R.id.owner_info_edit_text);
if (!TextUtils.isEmpty(info)) {
mOwnerInfo.setText(info);
mOwnerInfo.setSelection(info.length());
}
}