woong's
Android Application Version 불러오기 본문
Android Application Version 불러오기
안녕하세요. Android Version 불러오기 에 대해 설명 드리겠습니다 .
통상 Android Settion Activity 에 App Version 에 대해 표시 하곤 합니다 .
아래 코드를 통해서 Android Manifast 에 명시되어 있는 Version 을 가져 올 수 있습니다 .
1 2 3 4 5 | String version; try { PackageInfo i = context.getPackageManager().getPackageInfo(context.getPackageName(), 0); version = i.versionName; } catch(NameNotFoundException e) { } |
'Develop > Android' 카테고리의 다른 글
Android SurfaceView draw block 하기 (0) | 2016.02.14 |
---|---|
Android SurfaceView 배경 투명 처리 (0) | 2016.02.14 |
Android 한글 데이터 전송시 깨짐 방지 하기 (0) | 2016.02.14 |
Android [Accessibility] Missing contentDescription attribute on image 해결 방법 (0) | 2016.02.14 |
Android Intro 사용하기 (0) | 2016.02.14 |
Comments