일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- jsp
- C#
- TextBox
- SpringSource Tool Suite
- 웹뷰
- MANTIS
- STS
- MS-SQL
- WebView
- decompiler
- 자바스크립트
- Apache Lucene
- Maven
- Android
- Java
- Redirect
- MSsql
- 컬럼명
- html
- 이클립스
- 안드로이드
- 웹 서비스
- varags
- asp.net
- Web Service
- scrollView
- javascript
- Bootstrap
- 자바
- Eclipse
- Today
- Total
목록Android (11)
bboks.net™
맨 아래로 이동 mScroll.fullScroll(View.FOCUS_DOWN); 맨 위로 이동 mScroll.fullScroll(View.FOCUS_UP);
웹뷰에 들어가는 html의 css에 다음 element 추가-webkit-user-select: none; [출처] webview no selection/copy&paste
boolean isNetworkConnectionAvailable() { ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo info = cm.getActiveNetworkInfo(); if (info == null) return false; State network = info.getState(); return (network == NetworkInfo.State.CONNECTED || network == NetworkInfo.State.CONNECTING); } [출처] How to check the network availability?
1. 플립 메소드public static final int FLIP_VERTICAL = 1; public static final int FLIP_HORIZONTAL = 2; private Bitmap flipImage(Bitmap src, int type) { // create new matrix for transformation Matrix matrix = new Matrix(); // if vertical if (type == FLIP_VERTICAL) { // y = y * -1 matrix.preScale(1.0f, -1.0f); } // if horizonal else if (type == FLIP_HORIZONTAL) { // x = x * -1 matrix.preScale(-1.0f, 1.0..