Launcher(Homescreen)에서 보이는 앱
앱을 만들어 디바이스에 설치하면 Launcher에 내 앱이 보입니다. 그 이유는 기본적으로 아래와 같은 인텐트필터를 내 액티비티에 설정했기 때문입니다. Launcher는 이 인텐트필터를 등록한 액티비티를 찾아서 화면에 보여줍니다.
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
앱 리스트 가져오기
Launcher가 어떻게 이 앱들을 가져오는지 코드로 확인해보겠습니다.
Launcher는 LauncherApps라는 서비스를 이용하여 앱리스트를 가져옵니다. LauncherApps 내부에서는 PackageManager를 통해 이 Intent에 대한 Activity를 가져옵니다.
PackageManager.queryIntentActivities()
는 Intent와 관련된 결과를 ResolveInfo 리스트로 리턴하는 API입니다.
이 API를 이용하면 Launcher에 보이는 리스트를 얻을 수 있습니다.
ResolveInfo는 package name, label, icon 등의 많은 정보를 갖고 있기 때문에 아이콘 및 앱이름을 가져올 수 있습니다.
코드는 아래와 같습니다. 위의 인텐트필터와 동일한 인텐트를 생성하고 queryIntentActivities
를 호출합니다.
결과로 받은 ResolveInfo 리스트에서 아이콘, 이름, 클래스 이름 등을 가져올 수 있습니다.
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
List<ResolveInfo> ris = getPackageManager().queryIntentActivities(intent, 0);
if (ris != null) {
for (ResolveInfo ri : ris) {
String packageName = ri.activityInfo.packageName;
String label = ri.loadLabel(getPackageManager()).toString();
String className = ri.activityInfo.name;
Drawable icon = ri.loadIcon(getPackageManager());
Log.d(TAG, "Package name: " + packageName +
"\nLabel:" + label +
"\nActivityName:" + className);
}
}
실행 결과는 다음과 같습니다.
Package name: com.google.android.apps.photos
Label:Photos
ActivityName:com.google.android.apps.photos.home.HomeActivity
...
위에서 정의한 인텐트필터를 액티비티에 등록하면 Launcher에 노출이 됩니다. 2개를 등록했다면 2개 모두 노출이 됩니다. 반대로, 하나도 등록하지 않으면 Launcher에 보이지 않는 앱이 만들어집니다.
Related Posts
- Android 14 - 사진/동영상 파일, 일부 접근 권한 소개
- Android - adb push, pull로 파일 복사, 다운로드
- Android 14 - 암시적 인텐트 변경사항 및 문제 해결
- Jetpack Compose - Row와 Column
- Android 13, AOSP 오픈소스 다운로드 및 빌드
- Android 13 - 세분화된 미디어 파일 권한
- Android 13에서 Notification 권한 요청, 알림 띄우기
- Android 13에서 'Access blocked: ComponentInfo' 에러 해결
- 에러 해결: android gradle plugin requires java 11 to run. you are currently using java 1.8.
- 안드로이드 - 코루틴과 Retrofit으로 비동기 통신 예제
- 안드로이드 - 코루틴으로 URL 이미지 불러오기
- Android - 진동, Vibrator, VibrationEffect 예제
- Some problems were found with the configuration of task 에러 수정
- Query method parameters should either be a type that can be converted into a database column or a List
- 우분투에서 Android 12 오픈소스 다운로드 및 빌드
- Android - ViewModel을 생성하는 방법
- Android - Transformations.map(), switchMap() 차이점
- Android - Transformations.distinctUntilChanged() 소개
- Android - TabLayout 구현 방법 (+ ViewPager2)
- Android - 휴대폰 전화번호 가져오는 방법
- Android 12 - Splash Screens 알아보기
- Android 12 - Incremental Install (Play as you Download) 소개
- Android - adb 명령어로 bugreport 로그 파일 추출
- Android - adb 명령어로 App 데이터 삭제
- Android - adb 명령어로 앱 비활성화, 활성화
- Android - adb 명령어로 특정 패키지의 PID 찾기
- Android - adb 명령어로 퍼미션 Grant 또는 Revoke
- Android - adb 명령어로 apk 설치, 삭제
- Android - adb 명령어로 특정 패키지의 프로세스 종료
- Android - adb 명령어로 screen capture 저장
- Android - adb 명령어로 System 앱 삭제, 설치
- Android - adb 명령어로 settings value 확인, 변경
- Android 12 - IntentFilter의 exported 명시적 선언
- Android - adb 명령어로 공장초기화(Factory reset)
- Android - adb logcat 명령어로 로그 출력