안드로이드 개발 TIP
[Android]
EditText의 커서위치를 맨 마지막으로 이동시키자
안드로이드에서 간단하게 비트맵 이미지를 resize 할 수 있는 메소드를 기억 저장용으로 기록해둬요
resize 하려하는 Bitmap Image와 최대 길이를 지정하면 비율에 맞게 리사이즈가 돼요
아래 소스를 참고하세요~
//커서의 위치를 맨 마지막으로 이동시킨다.
CharSequence text = etSCMoneyInput.getText();
if(text!=null && text.length()!=0){
int cursorPos = Math.min(text.length(), 2000);
etSCMoneyInput.setSelection(cursorPos, cursorPos);
CharSequence text = etSCMoneyInput.getText();
if(text!=null && text.length()!=0){
int cursorPos = Math.min(text.length(), 2000);
etSCMoneyInput.setSelection(cursorPos, cursorPos);
}
- EditText에 대한 팁 -
즐거운 시간 보내세요~
댓글 없음:
댓글 쓰기