Set adress box cursor at the end when using bis function

This commit is contained in:
Sylvain Berfini 2012-10-05 09:48:06 +02:00
parent 969f396e62
commit 2ec5e4f81a

View file

@ -73,6 +73,7 @@ public class CallButton extends ImageView implements OnClickListener, AddressAwa
} else {
mAddress.setText(log.getTo().asStringUriOnly());
}
mAddress.setSelection(mAddress.getText().toString().length());
mAddress.setDisplayedName(log.getTo().getDisplayName());
}
}