Looking to add some polish to you're applications. Maybe enough to see a bit of a reflection? ;) Lots of applications use the effect of creating a reflection of the original image, one of those being the coverflow view on the iphone. It's a nice bit of presentation polish to add to your UI, when you know how is not difficult to implement. In Android you'll need to make use of a number of classes..
EditText 를 클릭 할 때 키패드는 자동으로 올라오게된다. 이때 키패드가 화면을 가려 입력시 불편을 줄 수있다. *XML //위에처럼 스크롤뷰로 감싸주면 키패드가 올라올때 스크롤이생겨서 사용자가 가려있는 뷰들을 //볼 수는 있지만.. 사용자가 스크롤을 해주어야 해서 불편하다. *Source myEditText : 사용자가 입력하려는 EditText myScrollView : 스크롤뷰 100 : 딜레이 0, 800 : 스크롤을 부드럽게 롤업하는 위치 myEditText.setOnFocusChangeListener(new OnFocusChangeListener(){ @Override public void onFocusChange(View v, boolean hasFocus) { if( hasFocus ..
EditText.setSelection(EditText.length()); //커서 위치 설정 EditText는 EditText의 객체명 EditText.length() 는 EditText의 내용의 길이만큼 커서의 위치를 설정하기 위함 .setSelection() : 는 커서위치 설정하는 명령 가로안에 숫자를 넣으면 그 위치만큼 커서가 위치한다. [출처] http://devbible.tistory.com/ [원본] http://devbible.tistory.com/17
- Total
- Today
- Yesterday