Android(15)
-
안드로이드 스튜디오에서 TAG로 디버깅
안드로이드 스튜디오에서 디버그 창입니다. 디버깅을 하기 위해서는 TAG 를 달아서 디버깅 하는 것이 내가 원하는 것만 볼 수 있는 최적의 방법이 아닐까 생각을 하는 데요. 이렇게도 해보고 [android studio]여러개 단어(tag) logcat 디버깅안드로이드 스튜디오 logcat 뷰에서 여러줄의 tag를 디버깅 할 수 있는 방법은 다음과 같습니다. 이상.blog.naver.com저렇게도 해봤는 데요https://blog.naver.com/tommybee/222926115226 LogCat을 이용한 안드로이드 디버깅이클립스나 안드로이드 스튜디오로 진행되는 안드로이드 개발에서 실제 로그 메시지를 어떻게 뿌리고 있는 ...blog.naver.com통합 개발 환경 내에서 개발 하는 것이 뭔가 정돈 ..
2025.01.12 -
이벤트 기반 아키텍처와 메시지 기반 아키텍처
Android : Event Driven Architecture vs Message Driven Architecture As Android developers, one of the biggest issues that we have to deal with is how to communicate between the Android components without leaking memory, as we have a very limited resources, and it is easy to mess around with the available memory .. www.linkedin.com Android 개발자로서 우리가 처리해야 하는 가장 큰 문제 중 하나는 메모리 누수 없이 Android 구성 요소 간에..
2023.04.02 -
커맨드 창과 에디터로 안드로이드 프로그래밍 해보기 - 2
잘 설명된 블로그를 번역 하였음...내 나름의 해석이라 뭐라고 그러는 사람 없기.. 커맨드 창과 에디터로 안드로이드 프로그래밍 해보기 - 2 잘 설명된 블로그를 번역 하였음...내 나름의 해석이라 뭐라고 그러는 사람 없기.. 커맨드라인으로 안드로... blog.naver.com 커맨드라인으로 안드로이드 개발하기1 : 기본 이클립스에서 ADT 플러그인을 제공하기는 하나, 좀 더 저수준 레벨에서 모든 것을 관리 하려면 필요하다. 다행히도, 안드로이드 SDK에서 커맨드라인에서 개발을 할 수 있는 모든 툴을 제공한다. 프로젝트 생성하기 tools 디렉토리에 가보면, 안드로이드 바이너리가 있으며, 다음과 같이 쓰면 된다. android create project \ --target \ --name \ --pa..
2023.03.04 -
데이터베이스 동시 접근 – Sqlite
SQLiteOpenHelper 구현이 되어있다고 다음과 같이 가정해보자. public class DatabaseHelper extends SQLiteOpenHelper {... } 자 그럼 여기서 서로 다른 쓰레드에서 다음과 같이 데이터베이스 데이터를 접근하는 코드를 만들어 본다. // 쓰레드 1 Context context =getApplicationContext(); DatabaseHelperhelper = new DatabaseHelper(context); SQLiteDatabasedatabase = helper.getWritableDatabase(); database.insert(…); database.close(); // 쓰레드 2 Context context =getApplicationCont..
2023.01.13 -
안드로이드 확장 리스트 뷰에 대한 자습서
http://www.androidhive.info/2013/07/android-expandable-list-view-tutorial/ www.androidhive.info 확장 리스트 뷰는 분류 별로 데이타를 그룹화 하는 데 사용 됩니다. 이 뷰는 사용자가 헤더 터치 시 그룹들을 펼치거나 접을 수 있도록 해 줍니다. 만약 이 리스트 뷰에 대해서 잘 모른다면 먼저 #Android #ListView #Tutorial 를 참고 하십시오 https://www.androidhive.info/2011/10/android-listview-tutorial/ 새로운 프로젝트를 만들어서 시작해 봅시다. 1. 이클립스 IDE에서 File ⇒ Android Application Project를 생성한 후 자신만의 내용으로 채..
2023.01.12 -
안드로이드 이해하기 - 첫 걸음 떼기
https://www.cprogramming.com/android/android_getting_started.html An Introduction to Android Development - Cprogramming.com Developing for Android - An Introduction Author: Rupali Sharma What is Android? Android is the world's most popular operating system for mobile devices and tablets. It is an open source operating system, created by Google, and available to all kinds of dev www.cprogramming...
2023.01.02