4월, 2012의 게시물 표시

Android Customer Dialog make Exam

Android Customer Dialog make Exam Declare and use like this MoveRouteListDlg  dlg = new MoveRouteListDlg (context); dlg.show();

한글 유니코드 변환 정보

한글 유니코드 변환 정보 JavaScript으로 구현되어 있다. http://sepiroth11.tistory.com/44

블러그 소스 코드 업로드시 팁

블러그 소스 코드 업로드시 팁 구글 공계 코드 정보를 css 스탈일에 추가하여 작성 http://code.google.com/p/syntaxhighlighter/ http://linkc.tistory.com/entry/%EC%86%8C%EC%8A%A4-%EC%BD%94%EB%93%9C-%ED%8F%AC%EC%8A%A4%ED%8C%85%EC%8B%9C-%ED%8C%81

Java ArrayList 에서 distinct 한 값을 저장하는 예

Save a list of unique string in the arraylist Java ArrayList 에서 distinct 한 값을 저장하는 예 http://stackoverflow.com/questions/2235471/save-a-list-of-unique-strings-in-the-arraylist

Android AlertDialog 유의점

Android AlertDialog 유의점 일반적으로 alertdialog 를 메소드를 구성할때 alertdialog 자체가 thread로 적용됨을 유의 하여야 한다. a() { print 1; b() print 2; } b() { alertDialog } 위와 같이 a를 실행했을때 b메소드 실행후 alertdialog가 화면에 나타나지만 그순간 이마 print 2가 실행된다. print 2가 b() 결과에 따른 실행정보일 경우 b() 정보에 포함해야 할 필요가 있다. private void popupCustomerSelect(ArrayList list, CustomerObject objCustomer, ContractObject objContract) { final CustomerObject objCu = objCustomer; final ContractObject objCon = objContract; final ArrayList popupList = list; final String selectName = popupList.get(0).getName(); ArrayList arrSelect = new ArrayList (); for (CustomerObject objCust : list) { arrSelect.add( "핸드폰 : " + (objCust.getMobile() == null ? "" : objCust.getMobile()) + "\n" + "주소 : " + objCust.getState() + " " + objCust.getCity() + " " + objCust.getState()); if (SSMApplication.DEBUG_MODE) { Lo...