본문 바로가기

반응형

IT

(137)
Basic settings for web(02/05/20 cudo notes 3) Activity 생명주기 존재하지 않음 -> onCreate() -> onStart -> onResume -> onPause() -> onStop() -> onDestroy -> 존재하지 않음 Problem 1 : If Android Emulator screen does not flip to landscape mode, check if flipping is blocked on avd manager. allow flipscreen on avd manager. ----------------- Basic web.xml settings you need 1. welcome file list for start up / 2. for database access contextConfigLocation /WEB-INF/..
안드로이드 스튜디오 계산기 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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 12..
계산기 strings.xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 GeoQuiz True False Before Next 정답! 틀렸어! 태평양은 대서양보다 더 크다. 수에즈 운하는 홍해와 인도양을 연결한다. 나일강은 이집트에서 시작된다. 아마존강은 아메리카 대륙에서 가장 긴 강이다 바이칼 호수는 세계에서 가장 오래되고 가장 갚은 담호수이다. http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
계산기 activity_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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 12..
android studio(2/03/20~2/04/20 cudo notes 3) 실무에 바로 적용하는 안드로이드 프로그래밍 (제 2판) match_parent = 자신의 부모만큼의 크기가 된다. wrap_content = 자신이 갖는 콘텐츠에 필요한 크기가 된다. 문자열 값을 위젯에 직접 지정할 수도 있으나 다른 파일에 관리하는게 좋다. 모든 프로젝트에는 strings.xml이라는 디폴트 문자열 파일이 포함된다. (strings는 res/values/strings.xml) android:id="@+id/true_button" 이렇게 선언해주면 소스로 사용할 수 있다. 안드로이드 애플리케이션을 실행하려면 실제 장치나 또는 안드로이드 가상 장치(Android Virtual Device AVD)가 필요하다. Tools -> AVD Manager 안드로이드 애플리케이션도 모델 뷰 컨트롤러 ..
Applied Visual Design text-align for text placement. relative length unit (%, em) and absolute length unit(px). rgba(r, g, b, o); rgb + opacity 1~0. box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23); text-transform to transform texts. :hover when mouse is placed over. background: linear-gradient( 53deg, #ccfffc, #ffcccf); good color transform: scale(number); for resizing animation effect basic code..
Basic CSS Three important properties control the space that surrounds each HTML element: padding, margin, and border. css selection priority class < id < inline style < !important colors can be represented by 3 ways: color name ex. color: red; hexdeciaml ex. color: #ff0000; (red green blue, two placement per color) rgb(0,0,0) method ex. color: rgb(255, 0, 0); you can create css variable by following: --pe..
FileZilla connect using .ppk(01/31/20 cudo notes2) Create a .pem key from aws ssh-add ~/downloads/ssh_taewon/MyKeyPair.pem chmod 400 mykeypair.pem Create a .ppk to connect to filezilla on mac use this command : puttygen mykeypair.pem -o mykepair.ppk filezilla -> select sftp protocol and select key file, and then browse to your created .ppk file. To run a project on ec2 server, you need to do the following: 1. connect to ec2 instance sudo ssh -i ..

반응형