IT 썸네일형 리스트형 [Android] Android Studio 3.5 Xml Code Style 오류 수정 방법 안녕하세요 YTS 입니다. 오늘은 Android Studio 3.5 에서 발생한 Xml Code Style 오류 수정 방법에 대해 설명해드리고자합니다. 기쁜 마음으로 Android Studio 3.5를 업데이트 하였는데... 하고나서 부터 xml에서 Ctrl + Alt + L 으로 코드 정렬을 하면 뒤죽박죽 섞이는 문제점을 찾을 수 있었어요... 인터넷을 뒤져보니 해결 방법이 있더라구요. 1. Ctrl + Alt + S 를 누르거나 File -> Setting으로 들어갑니다! 2. Editer -> Code Style -> XML으로 들어갑니다! 3. 오른쪽에 Set From 버튼을 클릭 후 Predefined Style -> Android 클릭 후 Apply 저장! 한뒤에 xml파일로 돌아가셔서 정렬을.. [Android] Lottie setImagesFolder Error 해결방법 (You must set an images folder before loading an image. Set it with LottieComposition setImagesFolder or LottieDrawable setImagesFolder) 안녕하세요 YTS 입니다. 오늘은 Android App에서 Lottie 라이브러리를 사용하다가 나오는 에러인 setImagesFolder 문제의 해결방법을 알아보겠습니다. 에러로그는 밑에와 같이 출력이 될텐데요. You must set an images folder before loading an image. Set it with LottieComposition setImagesFolder or LottieDrawable setImagesFolder 우선 첫번째로 에러가 발생한부분의 LottieAnimationView 부분을 찾아보셔야합니다. 딱보니 LottieAnimationView에서 intro.json 파일에 어떤 문제가 있는게 확실하겠네요 animation json 파일이기때문에 엄청나게 많은 내.. [코딜리티] - Lesson 6. Distinct 안녕하세요 남갯입니다. public class Distinct { public static int solution(int[] A) { // write your code in Java SE 8 HashSet set = new HashSet(); for (int a : A) { set.add(a); } return set.size(); } } https://app.codility.com/demo/results/training5H2N4H-GDA/ [코딜리티] - Lesson 5. GenomicRangeQuery 안녕하세요 남갯입니다. public int[] solution(String S, int[] P, int[] Q) { // write your code in Java SE 8 int[] result = new int[P.length]; char[] s = S.toCharArray(); for(char a : s){ } S.replaceAll("A", "1"); S.replaceAll("C", "2"); S.replaceAll("G", "3"); S.replaceAll("T", "4"); int length = S.length(); int number = Integer.valueOf(S); for (int i = 0; i < P.length; i++) { result[i] = (int) ((number % .. [코딜리티] - Lesson 5. PassingCars 안녕하세요 남갯입니다. public class PassingCars { public int solution(int[] A) { // write your code in Java SE 8 int max = 1000000000; int oneCount = 0; int result = 0; for (int a : A) { if (a == 1) { oneCount++; } } //01011 for (int i : A) { if (i == 0) { result += oneCount; if (result > max) { return -1; } } else if (i == 1) { oneCount--; } } return result; } } 1의 갯수를 구한뒤 0의 순서부터 1의 갯수를 줄줄이 뺀 갯수의 전체 합을 .. [코딜리티] - Lesson 4. MissingInteger 안녕하세요 남갯입니다. public int solution(int[] A) { // write your code in Java SE 8 int result = 1; Map map = new HashMap(); for (int a : A) { if (a > 0) map.put(a, true); } for(int i = 0; i < map.keySet().size(); i++){ if(!map.containsKey(result)){ return result; } result ++; } return result; } https://app.codility.com/demo/results/trainingV3PH42-992/ [코딜리티] - Lesson 4. MaxCounters 안녕하세요 남갯입니다. public static int[] solution(int N, int[] A) { // write your code in Java SE 8 int[] result = new int[N]; int lastMaxValueIdx = -1; int maxValue = 0; int maxTempValue = 0; int idx = 0; for (int a : A) { if (a > N) { lastMaxValueIdx = idx; maxValue = maxTempValue; } else { if (result[a - 1] < maxValue) { result[a - 1] = maxValue + 1; } else { result[a - 1]++; } maxTempValue = Math.ma.. [코딜리티] - Lesson 4. FrogRiverOne 안녕하세요 남갯입니다. public class FrogRiverOne { public static int solution(int X, int[] A) { int sum = ((X) * (X + 1)) / 2; int result = -1; Map map = new HashMap(); if(A.length == 0){ return -1; } int i = 0; for (int a : A) { if (!map.containsKey(a)) { map.put(a, true); sum -= a; } if (sum == 0) { return i; } i++; } return result; } } https://app.codility.com/demo/results/trainingZYBBSY-F3V/ 이전 1 ··· 8 9 10 11 12 13 14 ··· 23 다음