일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- fabic
- 스트리밍
- null safety
- Realm
- kotlin
- hardwareacceleration
- convert
- 컴파일
- Hyperledger
- vuepress
- error
- LAYER_TYPE_SOFTWARE
- 다윈
- firebase
- web3js
- test
- Exception
- Android
- log
- quick-start
- ethereum
- Gradle
- C
- coroutines
- Glide
- dataginding
- fabric-sdk-java
- porterduff
- 안드로이드
- bigquery
- Today
- Total
목록프로그래밍 (155)
날마다 새롭게 또 날마다 새롭게
http://blog.daum.net/haha25/5388027
출처 : http://binsolb.tistory.com/entry/CalledFromWrongThreadException 문제. Thread 에서 adapterView 데이터 업데이트 하는 notifyDataSetChanged() 호출 시, Error 발생해결. HandlerMessage 사용하여 해결됨.... - 핸들러 구현 코드@SuppressLint("HandlerLeak")private Handler mHandler = new Handler() {@Overridepublic void handleMessage(Message msg) {switch(msg.what){case UPDATE:notifyDataSetChanged(); //필자가 원했던 UI 업데이트 작업break;}}};
Step :1. sendpack Object를 byteArrayO로 변환2. byteArray를 파일로 저장3. 파일을 다시 읽어온 후, outputstream으로 전송 PicPacket sendpack = new PicPacket();sendpack.setPacket(null, file_stream.length, file_stream, filename, seq); try {// object -> byte[]ByteArrayOutputStream bos = new ByteArrayOutputStream();ObjectOutput out = new ObjectOutputStream(bos); out.writeObject(sendpack);byte[] objectBytes = bos.toByteArray()..
AndroidManifest.xml에서 Version 가져오는 코드 :context.getPackageManager().getPackageInfo(context.getPackageName(), 0).versionName
File path = new File("path");String filename=file.getName();- 파일 이름을 읽어온 후, 다음과 같은 방법으로 비교할 수 있다. ex) jpg인지 확인하고자 할때...1) if(filename.substring(filename.lastIndexOf("."), filename.length())=="jpg")2) if(filename.toLowerCase().endsWith(".jpg")==true)
출처 : http://breathair.tistory.com/251 String[] imageUrls;ArrayList imageArray; imageArray = new ArrayList();..... imageUrls = imageArray.toArray(new String[imageArray.size()]);
출처 : http://yajino.egloos.com/782492
출처 : 위키, RFC4566다음은 SDP의 구문이다. [1] Session description v= (protocol version) o= (originator and session identifier) s= (session name) i=* (session information) u=* (URI of description) e=* (email address) p=* (phone number) c=* (connection information -- not required if included in all media) b=* (zero or more bandwidth information lines) One or more time descriptions ("t=" and "r=" lines; see b..
error가 발생하는 프로젝트에서 마우스 오른쪽 버튼을 누르고Android Tools > Fix Project Properties를 선택하면 됩니다. 출처 : http://ggamzang.tistory.com/503