일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DB 데이터
- bootstrap4 패키지
- javascript
- OpenCV + Flask
- Django
- Action
- OpenCV
- #if
- #ifdef
- 명령어
- PyQt5
- 사이트 도메인
- 성능지표
- VS Code
- flask
- #endif
- 튜토리얼
- jinja2
- 실시간 시계
- DB 데이터 저장
- #else
- bootstrap
- heroku
- 환경변수 설정
- MySQL 세팅
- #ifndef
- openweathermap
- 콘솔 가상환경 # 콘솔 #가상환경
- #undef
- href
- Today
- Total
목록Android (45)
PROGRAMMING
※ LayoutInflater, 배열(Array), 추상클래스, 객체지향설계, 액션바 1. LayoutInflater medium.com/vingle-tech-blog/android-layoutinflater-b6e44c265408 안드로이드 LayoutInflater 사용법 LayoutInflater를 사용하는 방법과, 비동기적으로 LayoutInflater를 사용 하는 방법 medium.com 2. 배열(Array) 선언 및 초기화 https://ifuwanna.tistory.com/231 [Java] 배열(Array) 선언 및 초기화 하기 | 배열(Array) 이란? 배열(Array)이란 선형 자료구조(Data Structure)중 하나로, 동일한 타입의 연관된 데이터를 메모리에 연속적으로 저장하여..
※ int & Integer, ImageView, 비트연산자, Context, ArrayCopy 1. int, Interger https://growinglastcanyon.tistory.com/6 [Java] int와 Integer의 차이(+ Wrapper Class란?) [Java] int와 Integer의 차이(+ Wrapper Class란?) 자바에는 Integer.valueOf(String); 혹은Integer.parseInt(String); 처럼 Integer라는 것이 존재합니다. 보통 C 계열 언어를 사용하시던 분들이 자바를 처음 접.. growinglastcanyon.tistory.com 2. ImageView.setImage~ (4가지 방법 설명) https://sharp57dev.tis..
※ 랜덤추출(ArrayList), Activity 생명주기, 추상클래스, 함수포인터 대체, 익명 클래스 1. 랜덤추출(Shuffle) okky.kr/article/409120 OKKY | 자바 ArrayList 랜덤 get() 질문... (초보질문...) ArrayList String cards new ArrayList (); final String[] card { A , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 , J , Q , K , A , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 , J , Q , okky.kr 2. 생명주기(onCreate, onStart, onRestart, onResume, onPause, onStop, onDestroy) seongj..
※ Calender, SimpleDateFormat, Gregorian Calender, 토스트, 스낵바, 다이얼로그 1. Calender Class https://hyeonstorage.tistory.com/205 [JAVA] Calendar 클래스 (달력 출력) Calendar 클래스 (달력 출력) Calendar 클래스도 Date 클래스처럼 날짜와 시간에 관한 정보를 표현할 때 사용한다. Date 클래스에서 deprecate된 메소드나 생성자들 중 같은 기능의 메소드가 Calendar 클래스 hyeonstorage.tistory.com 2. SimpleDateFormat https://the-illusionist.me/41 Java 시간을 원하는 포맷으로 출력하기(SimpleDateFormat 사용..
※ 람다, 리스트, ArrayList, 이미지 확대 & 축소, 프레임 레이아웃, 1. 람다 coding-factory.tistory.com/entry/Java-%EB%9E%8C%EB%8B%A4%EC%8B%9DLambda-Expressions-%EC%82%AC%EC%9A%A9%EB%B2%95-%EC%98%88%EC%A0%9C [Java] 람다식(Lambda Expressions) -> 사용법 & 예제 람다식이란? 람다식이란 "식별자없이 실행가능한 함수" 함수인데 함수를 따로 만들지 않고 코드한줄에 함수를 써서 그것을 호출하는 방식이라고 생각하시면 되겠습니다. 함수적 프로그래밍을 coding-factory.tistory.com 2. 리스트 https://wikidocs.net/207 위키독스 온라인 책을 제..

package com.example.a201105_test; import androidx.appcompat.app.AppCompatActivity; import android.content.SharedPreferences; import android.graphics.Color; import android.os.Bundle; import android.preference.PreferenceManager; import android.view.View; import android.widget.Button; import android.widget.EditText; public class MainActivity extends AppCompatActivity { SharedPreferences preferences..
package com.example.a2011005_3; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; public class MainActivity extends AppCompatActivity { public static final String PLAYER_LEVEL = "playerLevel"; public static final String PLAYER_SCORE = "playerScore";..

package com.example.a201105_1; import androidx.appcompat.app.AppCompatActivity; import android.content.SharedPreferences; import android.os.Bundle; import android.preference.PreferenceManager; import android.widget.Button; import android.widget.CheckBox; import android.widget.EditText; public class MainActivity extends AppCompatActivity { private EditText editTextEmail, editTextPassword; private..