일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Eclipse
- ibsheet
- Android
- rowspan
- 가우스
- sencha touch
- 선택적조인
- Struts
- oracle
- jsr 296
- node.js
- JSON
- MySQL
- MFC
- Ajax
- iBATIS
- tomcat
- WebLogic
- swingx
- phonegap
- Google Map
- appspresso
- dock
- GPS
- 전자정부프레임워크
- Spring
- PLSQL
- JDOM
- PHP
- jQuery
- Today
- Total
목록Android (7)
Where The Streets Have No Name
안드로이드에서 최신 websocket 스펙을 지원하는 라이브러리를 선정하는데 시간이 좀 걸렸습니다. 여러가지 테스트중 http://autobahn.ws/android 에서 구한걸로 테스트했습니다. 여러 websocket 라이브러리 비교는 http://en.wikipedia.org/wiki/Comparison_of_WebSocket_implementations 여기 를 참조하세요. node.js에서 사용된 websocket 모듈은 http://einaros.github.com/ws/ 에서 구한걸로 테스트했습니다. node.js소스 var WebSocketServer = require('ws').Server , express = require('express') , fs = require('fs') , ht..
위 이미지와 같이 layout-land, layout-port로 구분해서 작성한다. import android.app.Activity; import android.content.res.Configuration; import android.os.Bundle; import android.util.Log; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class LayoutDemoActivity extends Activity { final static String TAG = "LayoutDemo"; @Override public void onCreate(Bundle sa..
참고 : http://stackoverflow.com/questions/3028306/download-a-file-with-android-and-showing-the-progress-in-a-progressdialog public class LayoutDemoActivity extends Activity { ProgressDialog mProgressDialog; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); mProgressDialog ..
Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setDataAndType(Uri.parse("file:///sdcard/DCIM/Camera/IMG_20120404_090943.jpg"), "image/*"); startActivity(intent); 외부에 있는 이미지 파일인 경우 sd card로 다운로드 한후 위의 방법으로 열어보면됨. sd card 저장 소스 출처 : http://www.androidsnippets.com/download-an-http-file-to-sdcard-with-progress-notification try { //set the download URL, a url that points t..
//show webapp: Uri uri = Uri.parse("http://www.google.com"); Intent it = new Intent(Intent.ACTION_VIEW,uri); startActivity(it); //show maps: Uri uri = Uri.parse("geo:38.899533,-77.036476"); Intent it = new Intent(Intent.Action_VIEW,uri); startActivity(it); //show ways Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en"); Intent it = new Int..
import java.io.BufferedInputStream; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import android.app.Activity; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.net.Uri; import android.os.Bundle; import android.util.DisplayMetrics; import android.util.Log; ..
import org.jivesoftware.smack.Connection; import org.jivesoftware.smack.PacketListener; import org.jivesoftware.smack.XMPPConnection; import org.jivesoftware.smack.XMPPException; import org.jivesoftware.smack.filter.MessageTypeFilter; import org.jivesoftware.smack.filter.PacketFilter; import org.jivesoftware.smack.packet.Message; import org.jivesoftware.smack.packet.Packet; import org.jivesoftwa..