[Android] Indivisual thinking of Android Fundametals

TaeSun·2022년 4월 19일
0

Android Fundamentals (학습한 내용을 업데이트 합니다)

Android

Android apps can be written using Kotlin, Java, and C++ languages. The Android SDK tools compile your code along with any data and resource files into an APK or an Android App Bundle.

"안드로이드는 kotlin, Java, C++와 같은 언어로 작성되어질 수 있습니다. 그리고 안드로이드 SDK 도구는 모든 데이터와 리소스 파일을 APK 또는 APP Bundle 방식으로 컴파일 합니다."


The Android operating system is a multi-user Linux system in which each app is a different user.
By default, the system assigns each app a unique Linux user ID (the ID is used only by the system and is unknown to the app). The system sets permissions for all the files in an app so that only the user ID assigned to that app can access them.
Each process has its own virtual machine (VM), so an app's code runs in isolation from other apps.
By default, every app runs in its own Linux process. The Android system starts the process when any of the app's components need to be executed, and then shuts down the process when it's no longer needed or when the system must recover memory for other apps.

"안드로이드 시스템은 멀리 리눅스 시스템입니다. 각각의 앱은 각각의 사용자를 가지고 있다는 의미입니다. 이 시스템은 기본적으로 특별한 Linu userID 값을 가지고 있는데(특별한 ID값은 시스템에서만 사용되어지고 앱상에서는 알지 못합니다.) 그리고 이 시스템은 userID가 할당되어져 있는 파일에만 접근이 가능하도록 설계되어 있습니다. 각각의 프로세스는 VM이라는걸 갖게 됩니다. 앱들의 코드가 다른 앱과 분기되어져서 실행되게 됩니다. 모든 앱은 리눅스 프로세스를 가지고 있고 안드로이드 시스템은 앱 컴포넌트가 필요하고 실행될때 시작되게 됩니다. 그리고 장시간 동안 메모리가 필요 없을시 다른 곳에 메모리를 사용하게 끔 종료합니다."



App Component

App components are the essential building blocks of an Android app. Each component is an entry point through which the system or a user can enter your app. Some components depend on others.
There are four different types of app components:

Activities
Services
Broadcast receivers
Content providers

"앱 컴포너트는 안드로이드 앱의 필수적인 요소들입니다. 각 컴포넌트는 엔트리 포인트를 통해서 시스템 또는 사용자가 앱에 접속할 수 있게 합니다. 이러한 주요 컴포넌트들은 Acitivities, Services, Broadcast receivers, Content providers 4대 컴포넌트가 있습니다."



Acitivity

An activity is the entry point for interacting with the user. It represents a single screen with a user interface. For example, an email app might have one activity that shows a list of new emails, another activity to compose an email, and another activity for reading emails. Although the activities work together to form a cohesive user experience in the email app, each one is independent of the others. As such, a different app can start any one of these activities if the email app allows it. For example, a camera app can start the activity in the email app that composes new mail to allow the user to share a picture. An activity facilitates the following key interactions between system and app:


"액티비티는 유저와 상호작용 하기 위한 엔트리 포인트 입니다. 다시 말해 유저와 밀접하게 연관이 되어 있는 컴포넌트 라는 겁니다. 이 액티비티는 single screen(단일 스크린)을 의미하는데, 예를들어 이메일 앱이 있다고 가정했을때, 새로운 이메일 리스트를 보여주는 스크린을 가지고 있다고 생각해보고 또 다른 단일 스크린에서는 이메일을 작성하고, 수행하는 스크린을 그리고 또 다른 스크린에서는 이메일을 읽을 수 있는 스크린이 있다고 가정해봅니다. 그렇다면 벌써 총 3개의 액티비티가 만들어졌습니다. 물론 Email App 이라는 범주안에 있는 스크린들이지만 각기 다른 기능과 역할을 지니고 있습니다.

또한 Email App에서 접근을 허용해주었다면 유저에게 이메일을 찍어서 공유해주는 기능이러거나 이런 기능들을 수행할 수 있습니다. 그렇다면 더 자세한 내용을 확인해보겠습니다."



1. Keeping track of what the user currently cares about (what is on screen) to ensure that the system keeps running the process that is hosting the activity.

"현재 사용자가 어떤 스크린에 있느냐를 추적합니다. 그 시스템이 계속 유지될 수 있도록 해주는 역할을 한다는 겁니다."

2. Knowing that previously used processes contain things the user may return to (stopped activities), and thus more highly prioritize keeping those processes around.

"우선순위가 바뀔 수 있습니다 가령 카메라 스크린에 가야된다던지 혹은 로그인 화면으로 가야된다던지 할 때 현재 사용자가 집중하고 있는 스크린의 우선순위가 달라질 수 있습니다. 하지만 다시 돌아올 것을 염두해두고 이전에 있던 프로세스는 잠시 중단 시켜둡니다. (삭제 되는것이 아닌 스택이 뒤로 밀려나는 것입니다.)"

0개의 댓글

관련 채용 정보