1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | public ArrayList<String> printDate(ArrayList<String> list){ SimpleDateFormat input_sdf = new SimpleDateFormat("MMddHHmm"); SimpleDateFormat output_sdf = new SimpleDateFormat("MM/dd HH:mm"); Date date = null; String outputStr; for(int i=0; i<list.size(); i++) { try { date = input_sdf.parse(list.get(i)); } catch (java.text.ParseException e) { e.printStackTrace(); } outputStr = output_sdf.format(date); list.set(i, outputStr); } return list; } | cs |
'Android' 카테고리의 다른 글
EditText에 카타카나만 입력되도록 처리 (0) | 2021.01.28 |
---|---|
Fragment에서 하드웨어키 onKeyDown/onKeyUp과 동일한 처리 (0) | 2021.01.27 |
ListView를 scroll하면 focus가 날아가는 이슈 해결 (0) | 2021.01.22 |
ListView 스크롤해도 button selected 유지하기 (0) | 2021.01.21 |
레이아웃과 포커싱 (0) | 2021.01.20 |
댓글