안드로이드 데이터베이스 SQLite 사용하기(메모저장) ~ Using Android Database SQLite
2019. 3. 4. 05:01
[# 2]…My DevelopStory
안드로이드 데이터베이스 SQLite 사용하기(메모저장)Using Android Database SQLite 웹이든 앱이든 빠질 수 없는게 데이터베이스인데, 안드로이드에는 기본적으로 데이터베이스관련 클래스가 내장되어 있다.데이터베이스를 생성하는 가장 간단한 방법은 context 클래스에 정의된 openOrCreateDatabase() 메소드를 사용한다애플리케이션에서 기본적으로 사용하는 Activity 클래스가 Context를 상속한 것이므로액티비티를 만들 때 그 안에서 이 메소드를 이용해 데이터베이스를 만들거나 열 수 있다. The database, whether on the web or on the app, is the database, and Android has basically buili-in da..
안드로이드 프레그먼트를 이용한 이미지 뷰어 ~ ImageViewer with Android Fragment
2019. 2. 28. 06:05
[# 2]…My DevelopStory
안드로이드 프레그먼트를 이용한 이미지 뷰어ImageViewer with Android Fragment 프레그먼트는 분할된 화면들을 독립적으로 구성하기 위해 사용하며, 분할된 화면들의 상태를 관리하기 위해 사용된다.프레그먼트를 이용하게 되면 코드를 독립적으로 구성하기 위해 코드를 더 많이 입력해야 하지만, 분할된 화면들을 독립적으로 구성하고 상태를 관리하는데 용이하다. The fragment is used to configue the divided screens independentlyUsed to manage the state of divided screensUsing Fragment requires more code input to configue the code independently, but ma..
안드로이드 스튜디오 카메라로 사진 찍기 ~ Android Studio, Take a picture with a camera
2019. 2. 26. 03:40
[# 2]…My DevelopStory
안드로이드 스튜디오, 카메라로 사진 찍기Android Studio, Take a picture with a camera 인텐트의 Action속성을 이용하여 간단하게 안드로이드에 설치되어 있는 카메라를 이용하여 사진을 찍어볼려고 한다.카메라를 실행하면 안드로이드에 설치되어 있는 카메라를 이용학히 때문에 설정을 따로 하지 않아서 간편하다. Using the action property of the intent, i want to take a picture simply by using the camera installed on the AndroidWhen a camera is run, it is convenient because it does not set up the camera because it is i..
안드로이드 스피너에 이미지 넣기 ~ Add the image to Spinner
2019. 2. 24. 02:06
[# 2]…My DevelopStory
안드로이드 스피너에 이미지 넣기Add the images to Spinner 스피너를 이용하면 드랍다운이 생겨 여러가지 선택지중 하나를 선택하는 것이 가능하다.웹으로치면 드랍다운 버튼이다.여기에 텍스트를 넣을 수도 있지만 이미지를 넣어 선택하게 할 수도 있다. Use spinner, it's possible to choose one of several one of several optionsIt's dropdown button on the webSpinner can put text, also add images xml은 간단하게 spinner만 있다.배경을 투명으로 한 이유는배경을 안 넣어버리면 빈공간으로 되어 레이아웃이 이상하게 되고배경을 넣어버리면 선택되는 이미지랑 겹쳐버리기 때문이다 Xml is s..
안드로이드 뷰페이저를 이용한 화면전환 ~ Screen switching with Android Viewpager
2019. 2. 22. 02:46
[# 2]…My DevelopStory
안드로이드 뷰페이저를 이용한 화면전환Screen switching with Android Viewpager 뷰페이저란 뷰를 좌/우로 넘겨가며 뷰를 보여주는 클래스이다.안드로이드에서 기본으로 지원하는 클래스는 아니지만 안드로이드에서 기본으로 라이브러리를 제공하고 있어 간단하고 사용할 수 있다.좌/우로 넘겨가며 뷰를 보여주는 다른 방법도 있다고 들었지만 뷰페이저가 편리하다고 한다. VIewpager is class that show a view by passing it left or rightIt is not basecally support class but it is simple and usable beacuse it provides a library built into AndroidI've heard t..
안드로이드 서비스 이해하기 ~ To understand Android Service
2019. 2. 21. 02:57
[# 2]…My DevelopStory
안드로이드 서비스 이해하기To understand Android Service 안드로이드에는 눈에 보이지 않은 서비스가 존재하는데, 서비스도 애플리케이션의 구성요소이므로 시스템에서 관리를 한다.서비스는 기기에 항상 실행되어 있는 상태로 다른 기기과 데이터를 주고 받거나 상태를 모니터링 한다.그래서 서비스를 실행해 두면 상태가 계속 유지되어야 한다 Android have service that invisibleThe service is also a component of the application and is managed by the systemThe service is always running on the device and data is exchanged with other device or st..
안드로이드 개인 세미 프로젝트(3) - 스터디 스탑워치 ~ Android personal SemiProject
2019. 2. 19. 02:25
[# 2]…My DevelopStory
안드로이드 개인 세미 프로젝트Android Personal Semi Project 완벽한 고급기능은 구현하지 못하였지만 기본적인 기능은 1개 빼고 모두 구현한 상태이다.지금 현재 스탑워치 기능은 물론 설정에서 배경화면 선택과 대기화면은 구현한 상태이다.이제 남은건 기록인데 이는 어찌해야 하는지 또 자료를 찾아보아야 겠다. I haven't implemented the perfect advanced function, but the basic functions are all implemented except oneNow i have implements STopWatch function, SettingView that select background and wating viewNow what's left is..
안드로이드 개인 세미 프로젝트(2) - 스터디 스탑워치 ~ Android personal SemiProject - Study StopWatch
2019. 2. 18. 01:41
[# 2]…My DevelopStory
안드로이드 개인 세미 프로젝트 ~ 스터디 스탑워치Android Personal SemiProject ~ Study StopWatch 설정화면을 추가 하였고, 그 설정화면에서는 배경화면을 선택할 수 있게 하였다.아직 디자인적인 요소는 건들지 않아서 투박해 보일 수 있다.기능이 중요하다고 생각하여 디자인적인 요소는 뒤로 미뤄 두었다. Add the setting view, it choice a background imageThe drsign element has not yet been done, so it can seem dauntingI think the function is important, the design element was put back 설정화면에는 간단하게 이미지가 들어있는 버튼 4개만 추..
안드로이드 개인 세미 프로젝트(1) - 스터디 스탑워치 ~ Android personal SemiProject - Study StopWatch
2019. 2. 17. 04:36
[# 2]…My DevelopStory
안드로이드 개인 세미 프로젝트 ~ 스터디 스탑워치Android personal SemiProject ~ Study StopWatch강의를 보고 배운것들을 간단하게 사용해보고자 시작한 안드로이드 세미프로젝이다.역시 구글링을 통해 배우면서 코딩을 하고 있으며, 앞으로도 많은 구글링을 할 것 같다.이것도 실력 키우는데 겪는 과정이라고 생각한다. 웹개발 공부할때도 비슷했으니..머릿속에서는 어느정도 이렇게 하면 되지 않을까? 라고 생각이 들지만, 손은 움직이지 않았다...ㅠㅠ It's an Android SemiProject that started to use simple thing that learned from the lectureAlso, i'm learing and coding through Google,..
안드로이드 스튜디오 리스트뷰 사용하기 - Using the Android Studio ListView
2019. 2. 12. 01:37
[# 2]…My DevelopStory
안드로이드 스튜디오 리스트뷰 사용하기Using the Android Studio ListView 예를들어 전화번호부처럼 많은 자료를 보여줘야 할 경우가 있다.이럴 경우 리스트뷰를 사용하면 간편하고 쉽게 사용자에게 데이터를 보여줄 수 있는데 이번에 이러한 리스트뷰를 공부하였다. 리스트뷰는 기본외의 서브 레이아웃xml과 인플레이션을 하기 위한 인플레이터를 한 자바코드가 있다 For example show a lot of data such as phonebookin the case, ListView makes it simple and easy to show your data to usersthis time, i studied ListViewListView have sub layout XML outside th..