본문 바로가기

전체48

[AndroidStudio] MaterialCalendar Range 두 기간의 날짜 사이 값 받기 MaterialCalendar Range로 설정 //activitiy_main.xml 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 Colored by Color Scripter cs 각가의 TextView에 startdate, enddate 표시됨 //MainActivity.java 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 31 32 33 34 35 36 37 38 .. 2022. 4. 19.
[AndroidStudio] 범위 설정 가능한 Calendar 오류 기록 1. Cosmo Calendar https://github.com/ApplikeySolutions/CosmoCalendar GitHub - ApplikeySolutions/CosmoCalendar: 📅 CosmoCalendar is a fully customizable calendar with a wide variety of features an 📅 CosmoCalendar is a fully customizable calendar with a wide variety of features and displaying modes. - GitHub - ApplikeySolutions/CosmoCalendar: 📅 CosmoCalendar is a fully customizable calendar ... git.. 2022. 4. 18.
Material Calendar View - xml 뜨지 않는 오류 https://github.com/prolificinteractive/material-calendarview GitHub - prolificinteractive/material-calendarview: A Material design back port of Android's CalendarView A Material design back port of Android's CalendarView - GitHub - prolificinteractive/material-calendarview: A Material design back port of Android's CalendarView github.com 한참이나 머리 싸맨 오류 git이나 기타 블로그를 보고 똑같이 했는데도 저렇게 나왔다. 만약 서치로 들어.. 2022. 1. 18.
[AndroidStudio] error: unexpected element <intent-filter> found in <manifest> Execution failed for task ':app:processDebugResources'. > A failure occurred while executing com.android.build.gradle.internal.res.LinkApplicationAndroidResourcesTask$TaskAction > Android resource linking failed ERROR:C:\Users\NameLess\AndroidStudioProjects\AndroidApp\app\build\intermediates\packaged_manifests\debug\AndroidManifest.xml:24: AAPT: error: unexpected element found in . 원인 : manifest.. 2022. 1. 14.
[React 오류] A <Route> is only ever to be used as the child of <Routes> element, never rendered directly. Please wrap your <Route> in a <Routes>. react-router-dom 버전이 5->6으로 업데이트되었다고 한다. 내가 공부하고 있는 버전은 5라서 계속 오류가 떴나보다ㅠ ※ 참고 사이트 https://stackoverflow.com/questions/69832748/error-a-route-is-only-ever-to-be-used-as-the-child-of-routes-element Error: A is only ever to be used as the child of element Trying to use routing for the first time, and followed the exact instructions from Udemy: App.js: import { Route } from "react-router-dom"; impor.. 2022. 1. 2.
React-Quiz 만들기 [6] : import export 이용 import export 이용하여 파일 분리하기 파일을 여러 개로 분리할 때 사용한다. 코드가 길어질 수록 수정하기가 번거롭고 어려워진다. 컴포넌트 단위로 코드를 분리하는 것을 습관화 하자 모듈 분리된 파일의 이름을 모듈(module)이라 한다. 모듈 내에는 함수, 변수 등 코드에서 사용하는 모든 것들이 있을 수 있다. 모듈 내에 있는 값을 내보낼땐 export 다른 모듈에서 값을 불러올땐 import 퀴즈 문항 분리하기 App.js에 있는 quizzes를 대문자로 변경 후 다른 모듈로 내보내기위해 export 한다. ※ 대문자 변경 하는 이유 : 전체 어플리케이션에서 변하지 않는 값은 js에서 대문자로 표현한다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20.. 2021. 12. 31.
React-Quiz 만들기 [5] 1. 여러 퀴즈를 렌더링 하기위해 각 순서에 따라 id 값을 주었다. 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 const quizzes = [ { id:1, question: "나는 몇 학년일까요?", answers: [ {text: "1학년", isCorrect: false}, {text: "2학년", isCorrect: false}, {text: "3학년", isCorrect: false}, {text: "4학년", isCorrect: true}, ], }, { id:2, question: "나는 몇 살일까요?", answers: [ {text: "21살", isCorrect:false }, {text: "2.. 2021. 12. 31.
React-Quiz 만들기 [4] 2021.12.26 - [공부이야기/[React]] - React-Quiz 만들기 [3] React-Quiz 만들기 [3] App.js 코드 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 31 32 33 34 35 36 import React from "react"; import "./App.css"; function App(){ const handleCl.. codingspace-nameless.tistory.com 3편의 코드를 간결하게 만들어보았다. 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 31 32.. 2021. 12. 26.