일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- soundpool
- 안드로이드
- 자동 생성
- dovecot
- PHP
- C# IO
- 안드로이드 gcm
- not working
- FCM
- android 효과음
- 안드로이드 푸시
- xe
- roundcube
- php 시큐어코딩
- C#
- 설치
- javascript
- php 취약점
- curl
- mysql
- html5
- WebView
- 폼메일
- UML
- chart.js
- 우분투
- 자바스크립트
- 안드로이드 푸쉬
- Android
- Mail Server
- Today
- Total
목록전체 글 (496)
그러냐
Enum Values ImageView.ScaleType CENTER Center the image in the view, but perform no scaling. View의 중앙에 위치. 원본크기로 나옴. ImageView.ScaleType CENTER_CROP Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding). 좌우나 상하중 짧은쪽 길이를 View의 크기에 맞추고 나머지 부분 잘라 버림..
http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:weightSum="1" android:background="#ffffffff"> android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="0.7" android:background="#ff000000"/>
예를 들어 lite버전 같은걸 만들려고 하니 귀찮은게 상당히 많다. check list 1) src 아래 패키지명들 변경. 이클립스를 사용하여 변경을 누름. 2) 이름 변경. String.xml의 string 리소스를 확인 3) res/layout을 하나씩 열어서 문제가 있는지 확인. custom view를 만들었을 경우, 에러가 날 수 있음. Graphical Layout으로 보면 에러 확인하고 고치기 쉬움. 4) AndroidMenifest.xml 파일 안에 패키지 명 변경. Activity나 Service의 name이 제대로 되어 있나 확인. 5) 소스코드들 안의 R 패키지 경로 변경. 이클립스에서 CTRL+H (또는 Search > Files.. ) 에서 패키지.R을 검색어로 입력하고 아래에 Re..