android tech. (27) 썸네일형 리스트형 파일다운로드 및 저장 URL 주소의 파일을 다운 받아서 저장하려면, 다음 메소드 내용처럼 구현 하면됨. public void downAndSave(String urlString, String savePath) {URL url;InputStream inputStream;OutputStream outputStream;HttpURLConnection con;try {url = new URL(urlString);con = (HttpURLConnection)url.openConnection();con.setRequestProperty("Connection", "keep-alive");con.setConnectTimeout(20000);con.setReadTimeout(20000);con.connect();inputStream = ne.. layout에서 round rect 그리기 radius topLeft, topRight, bottomLeft, bottomRight 따로 조절할때 에뮬에서는 제대로 안보임 --> 실제 디바이스에서 봐야함 레이아웃에서 include 사용시 주의 사항 를 사용할 때, 최상위 레이아웃 바로 밑에서 사용해야 함 예) 잘못된 예) string[] to ArrayList<string> String[] stringsnew ArrayList(Arrays.asList(strings)); ArrayList sort private final static Comparator compatator = new Comparator() { @Overridepublic int compare(T lhs, T rhs) {int result = 0;if(lhs.getValue > rhs.getValue) {result = 1;} else if(lhs.getValue < rhs.getValue) {result = -1;}return result;}}; (위 comparator는 오름차순, 내용을 반대로 하면 내림차순, 기타 조건에 따라 정렬 가능) 타입에 맞게 Comparator를 정의 해놓고, ArrayList result Collections.sort(result, compatator); string 검색 String targetString searchingString target.indexOf(searchingString) >= 0 target이 searchingString을 포함하고 있으면 인덱스가 존재(없으면 -1) 이것을 활용해서 검색기능 구현 가능 어플 이름 최대 글자 수 애플리케이션 이름의 최대 글자 수는 공백 포합해서 12자이다. YUV android YUV 포맷 구성 Y Y Y Y Y YY Y Y Y Y YY Y Y Y Y YY Y Y Y Y YU V U V U VU V U V U V Y 4개당 U, V 하나씩 예) 첫번째, 두번째, 일곱번째, 여덟번째 Y, 스물다섯번째 U, 스물여섯번째 V 이전 1 2 3 4 다음