どこからでもパッケージ名を取得する方法は?


346

私はの可用性を知っています Context.getApplicationContext()View.getContext()それらを介して実際にContext.getPackageName()を呼び出すことができます。を、アプリケーションのパッケージ名を取得できます。

私はメソッドから呼び出した場合、彼らは動作しているのViewActivityオブジェクトが利用可能であるが、私は何もして完全に独立したクラスからパッケージ名を検索しないようにしたい場合ViewActivity、(直接的または間接的に)それを行う方法はありますか?


7
回答が承認されると、アプリケーションがときどきクラッシュします。AddDevとTurboのコメントを読んでください。解決策を提案してくれた両者に感謝します。
nikib3ro

1
別のオプションがない場合もありますが、ベストプラクティスの問題として、これを最後のコンテキストポイントから何らかの方法で必要なクラスに渡すことをお勧めします。あなたは静的な方法でコンテキストについて知らないクラスからランタイムコンテキスト情報にアクセスしています-私には悪臭がします。別のアプローチは、それをどこかにハードコーディングすることです。
アダム

回答:


487

アイデアは、パッケージ名としてインスタンス化された静的変数をメインアクティビティに含めることです。次に、その変数を参照します。

メインアクティビティのonCreate()メソッドで初期化する必要があります。

クラス全体:

public static String PACKAGE_NAME;

それから

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    PACKAGE_NAME = getApplicationContext().getPackageName();
}

その後、からアクセスできますMain.PACKAGE_NAME


3
これは私にとって今のところ最も実用的な解決策のようですが、アクティビティのサブクラスを作成する必要があります...今のところ+1。
ef2011

1
:ちょうど同様の参照見つかっstackoverflow.com/questions/2002288/...
ef2011

13
私の理解では、finalこれは不変で、コンストラクター内1回だけ初期化可能です。onCreate()コンストラクタではありません。間違えたら訂正してください。
ef2011

79
このアプローチは正しくありません。たとえば、あなたが二次的な活動を行っているときにアプリケーションがバックグラウンドに移行し、その後復元されたとします。メインアクティビティのonCreate()を呼び出すことができず、PACKAGE_NAMEがnullになります。さらに、アプリケーションに10のエントリポイントがあり、明確な「メインアクティビティ」がない場合はどうなりますか?この質問で私の答えをチェックして、正しいアプローチを確認できます
Addev

3
@Turboは、Androidがプロセスを強制終了した場合、onCreateとにかくもう一度呼び出す必要があるため、このソリューションは問題になりません。
ジョンリーヘイ

276

gradle-android-pluginを使用してアプリをビルドする場合は、

BuildConfig.APPLICATION_ID

任意のスコープからパッケージ名を取得します。静的なもの。


23
それが適切な方法であり、受け入れられた答えであるべきです。
アベロウ

4
注:マルチフレーバービルドでは、これは(BuildConfigクラスへのアクセスに使用されるインポートに応じて)、フレーバーのパッケージ名ではなく、デフォルト構成のパッケージ名を返します。
ロルフツ

2
@Rolfツそれは真実ではありません、それはアプリケーションの正しいパッケージ名を返します;)多分それをあなたのJavaクラスのパッケージ名と間違えているかもしれません
Billda

28
これをライブラリプロジェクトで使用する場合は注意してください。これは機能しません。
zyamys 2017年

6
これをプロジェクト内の複数のモジュールでも使用する場合は注意してください。
user802421 2017年

68

「どこでも」という言葉がある場合、明示的にContext(たとえば、バックグラウンドスレッドから)持つ必要がない場合は、次のようにプロジェクトでクラスを定義する必要があります。

public class MyApp extends Application {
    private static MyApp instance;

    public static MyApp getInstance() {
        return instance;
    }

    public static Context getContext(){
        return instance;
        // or return instance.getApplicationContext();
    }

    @Override
    public void onCreate() {
        instance = this;
        super.onCreate();
    }
}

次に、manifestこのクラスをタブのNameフィールドに追加する必要がありApplicationます。またはxmlを編集して

<application
    android:name="com.example.app.MyApp"
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    .......
    <activity
        ......

そしてどこからでもあなたは呼び出すことができます

String packagename= MyApp.getContext().getPackageName();

それが役に立てば幸い。


これはスレッドセーフではありませんが、バックグラウンドスレッドが後でこのアクティビティによって開始された場合は、おそらくそれを回避できます。
tomwhipple 2011

3
アプリの起動時に最初に設定されるのはインスタンスへの参照であるため、スレッドセーフです
Addev

17
この問題ごと: code.google.com/p/android/issues/detail ? id = 8727 ContentProviderオブジェクトはApplicationオブジェクトの前に作成されます。これは明らかにドキュメントに反しているようですが、設計上および設計に従っているようです。これにより、ContentProviderの初期化中にgetInstance()が呼び出された場合、インスタンスが未設定になる可能性があります。
カール

3
のドキュメントApplication.onCreate()はこれを反映するように変更されました。具体的には、「アプリケーションの起動時、アクティビティ、サービス、またはレシーバーオブジェクト(コンテンツプロバイダーを除く)の前に呼び出される」と明記されています。
ポールランメルツマ2013年

2
実行中のアクティビティに関係なく、コンテキストが消滅することはないため、これが選択された答えになるはずです。
Elad Nava

43

Gradleビルドを使用する場合は、これを使用してBuildConfig.APPLICATION_ID、アプリケーションのパッケージ名を取得します。


6
アプリケーションIDとパッケージ名は異なります。アプリケーションIDはgradle.buildファイルを介して定義され、パッケージ名はマニフェストで定義されます。それらは同じ値を持っていることが多いですが、より複雑なビルドシナリオでは異なる場合もあります。パッケージ名を変更せずに、異なるビルド構成に異なるアプリケーションIDを割り当てることができます。
Uli

3
もう少し詳細でニュアンスを知りたい人のため@Uli tools.android.com/tech-docs/new-build-system/...を
ケビン・リー

10
@Uliつまり、app.gradleのapplicationIdがAndroidManifest.xml内のpackageNameから延期されている場合でも、context.getPackageName()を呼び出すと、AndroidManifest.xml内のpackageNameではなく、applicationIdが返されます。新しいビルドシステムの目的は、両方を分離することでした。そのため、applicationIdは、Google Playとそれがインストールされているデバイスに認識されているアプリの実際のパッケージ名です。デプロイ後は変更できません。私の要点は、BuildConfig.APPLICATION_IDを使用しても問題ないということです。私が間違っている場合はお知らせください(:
Kevin Lee

2
@kevinze完全に正確です!私はダブルチェックするテストを実行しました。説明と訂正に感謝します。
Uli

5
private String getApplicationName(Context context, String data, int flag) {

   final PackageManager pckManager = context.getPackageManager();
   ApplicationInfo applicationInformation;
   try {
       applicationInformation = pckManager.getApplicationInfo(data, flag);
   } catch (PackageManager.NameNotFoundException e) {
       applicationInformation = null;
   }
   final String applicationName = (String) (applicationInformation != null ? pckManager.getApplicationLabel(applicationInformation) : "(unknown)");
   return applicationName;

}

4

次のようにパッケージ名を取得できます。

$ /path/to/adb shell 'pm list packages -f myapp'
package:/data/app/mycompany.myapp-2.apk=mycompany.myapp

オプションは次のとおりです。

$ adb
Android Debug Bridge version 1.0.32
Revision 09a0d98bebce-android

 -a                            - directs adb to listen on all interfaces for a connection
 -d                            - directs command to the only connected USB device
                                 returns an error if more than one USB device is present.
 -e                            - directs command to the only running emulator.
                                 returns an error if more than one emulator is running.
 -s <specific device>          - directs command to the device or emulator with the given
                                 serial number or qualifier. Overrides ANDROID_SERIAL
                                 environment variable.
 -p <product name or path>     - simple product name like 'sooner', or
                                 a relative/absolute path to a product
                                 out directory like 'out/target/product/sooner'.
                                 If -p is not specified, the ANDROID_PRODUCT_OUT
                                 environment variable is used, which must
                                 be an absolute path.
 -H                            - Name of adb server host (default: localhost)
 -P                            - Port of adb server (default: 5037)
 devices [-l]                  - list all connected devices
                                 ('-l' will also list device qualifiers)
 connect <host>[:<port>]       - connect to a device via TCP/IP
                                 Port 5555 is used by default if no port number is specified.
 disconnect [<host>[:<port>]]  - disconnect from a TCP/IP device.
                                 Port 5555 is used by default if no port number is specified.
                                 Using this command with no additional arguments
                                 will disconnect from all connected TCP/IP devices.

device commands:
  adb push [-p] <local> <remote>
                               - copy file/dir to device
                                 ('-p' to display the transfer progress)
  adb pull [-p] [-a] <remote> [<local>]
                               - copy file/dir from device
                                 ('-p' to display the transfer progress)
                                 ('-a' means copy timestamp and mode)
  adb sync [ <directory> ]     - copy host->device only if changed
                                 (-l means list but don't copy)
  adb shell                    - run remote shell interactively
  adb shell <command>          - run remote shell command
  adb emu <command>            - run emulator console command
  adb logcat [ <filter-spec> ] - View device log
  adb forward --list           - list all forward socket connections.
                                 the format is a list of lines with the following format:
                                    <serial> " " <local> " " <remote> "\n"
  adb forward <local> <remote> - forward socket connections
                                 forward specs are one of:
                                   tcp:<port>
                                   localabstract:<unix domain socket name>
                                   localreserved:<unix domain socket name>
                                   localfilesystem:<unix domain socket name>
                                   dev:<character device name>
                                   jdwp:<process pid> (remote only)
  adb forward --no-rebind <local> <remote>
                               - same as 'adb forward <local> <remote>' but fails
                                 if <local> is already forwarded
  adb forward --remove <local> - remove a specific forward socket connection
  adb forward --remove-all     - remove all forward socket connections
  adb reverse --list           - list all reverse socket connections from device
  adb reverse <remote> <local> - reverse socket connections
                                 reverse specs are one of:
                                   tcp:<port>
                                   localabstract:<unix domain socket name>
                                   localreserved:<unix domain socket name>
                                   localfilesystem:<unix domain socket name>
  adb reverse --norebind <remote> <local>
                               - same as 'adb reverse <remote> <local>' but fails
                                 if <remote> is already reversed.
  adb reverse --remove <remote>
                               - remove a specific reversed socket connection
  adb reverse --remove-all     - remove all reversed socket connections from device
  adb jdwp                     - list PIDs of processes hosting a JDWP transport
  adb install [-lrtsdg] <file>
                               - push this package file to the device and install it
                                 (-l: forward lock application)
                                 (-r: replace existing application)
                                 (-t: allow test packages)
                                 (-s: install application on sdcard)
                                 (-d: allow version code downgrade)
                                 (-g: grant all runtime permissions)
  adb install-multiple [-lrtsdpg] <file...>
                               - push this package file to the device and install it
                                 (-l: forward lock application)
                                 (-r: replace existing application)
                                 (-t: allow test packages)
                                 (-s: install application on sdcard)
                                 (-d: allow version code downgrade)
                                 (-p: partial application install)
                                 (-g: grant all runtime permissions)
  adb uninstall [-k] <package> - remove this app package from the device
                                 ('-k' means keep the data and cache directories)
  adb bugreport                - return all information from the device
                                 that should be included in a bug report.

  adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]
                               - write an archive of the device's data to <file>.
                                 If no -f option is supplied then the data is written
                                 to "backup.ab" in the current directory.
                                 (-apk|-noapk enable/disable backup of the .apks themselves
                                    in the archive; the default is noapk.)
                                 (-obb|-noobb enable/disable backup of any installed apk expansion
                                    (aka .obb) files associated with each application; the default
                                    is noobb.)
                                 (-shared|-noshared enable/disable backup of the device's
                                    shared storage / SD card contents; the default is noshared.)
                                 (-all means to back up all installed applications)
                                 (-system|-nosystem toggles whether -all automatically includes
                                    system applications; the default is to include system apps)
                                 (<packages...> is the list of applications to be backed up.  If
                                    the -all or -shared flags are passed, then the package
                                    list is optional.  Applications explicitly given on the
                                    command line will be included even if -nosystem would
                                    ordinarily cause them to be omitted.)

  adb restore <file>           - restore device contents from the <file> backup archive

  adb disable-verity           - disable dm-verity checking on USERDEBUG builds
  adb enable-verity            - re-enable dm-verity checking on USERDEBUG builds
  adb keygen <file>            - generate adb public/private key. The private key is stored in <file>,
                                 and the public key is stored in <file>.pub. Any existing files
                                 are overwritten.
  adb help                     - show this help message
  adb version                  - show version num

scripting:
  adb wait-for-device          - block until device is online
  adb start-server             - ensure that there is a server running
  adb kill-server              - kill the server if it is running
  adb get-state                - prints: offline | bootloader | device
  adb get-serialno             - prints: <serial-number>
  adb get-devpath              - prints: <device-path>
  adb remount                  - remounts the /system, /vendor (if present) and /oem (if present) partitions on the device read-write
  adb reboot [bootloader|recovery]
                               - reboots the device, optionally into the bootloader or recovery program.
  adb reboot sideload          - reboots the device into the sideload mode in recovery program (adb root required).
  adb reboot sideload-auto-reboot
                               - reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.
  adb sideload <file>          - sideloads the given package
  adb root                     - restarts the adbd daemon with root permissions
  adb unroot                   - restarts the adbd daemon without root permissions
  adb usb                      - restarts the adbd daemon listening on USB
  adb tcpip <port>             - restarts the adbd daemon listening on TCP on the specified port

networking:
  adb ppp <tty> [parameters]   - Run PPP over USB.
 Note: you should not automatically start a PPP connection.
 <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
 [parameters] - Eg. defaultroute debug dump local notty usepeerdns

adb sync notes: adb sync [ <directory> ]
  <localdir> can be interpreted in several ways:

  - If <directory> is not specified, /system, /vendor (if present), /oem (if present) and /data partitions will be updated.

  - If it is "system", "vendor", "oem" or "data", only the corresponding partition
    is updated.

environment variables:
  ADB_TRACE                    - Print debug information. A comma separated list of the following values
                                 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp
  ANDROID_SERIAL               - The serial number to connect to. -s takes priority over this if given.
  ANDROID_LOG_TAGS             - When used with the logcat option, only these debug tags are printed.

3

ドキュメントに記載されていない方法を使用できますandroid.app.ActivityThread.currentPackageName()

Class<?> clazz = Class.forName("android.app.ActivityThread");
Method method  = clazz.getDeclaredMethod("currentPackageName", null);
String appPackageName = (String) method.invoke(clazz, null);

警告:これは、アプリケーションのメインスレッドで実行する必要があります。

このブログ投稿のおかげで、http : //blog.javia.org/static-the-android-application-package/に感謝します。


2

Gradleを使用している人は、@ Billdaが述べたように、次の方法でパッケージ名を取得できます。

BuildConfig.APPLICATION_ID

これにより、アプリグラドルで宣言されたパッケージ名が得られます。

android {
    defaultConfig {
        applicationId "com.domain.www"
    }
}

Javaクラスで使用されるパッケージ名(とは異なる場合があります)を取得しapplicationIdたい場合は、

BuildConfig.class.getPackage().toString()

どちらを使用するか混乱している場合は、こちらをお読みください

注:アプリケーションIDは、以前はコードのパッケージ名に直接関連付けられていました。そのため、一部のAndroid APIではメソッド名とパラメーター名に「パッケージ名」という用語を使用していますが、これは実際にはアプリケーションIDです。たとえば、Context.getPackageName()メソッドはアプリケーションIDを返します。アプリのコードの外でコードの実際のパッケージ名を共有する必要はありません。


どのコードを使用しましたか?あなたが得た正確なエラーを提供してください。
user1506104

1
PackageInfo pinfo = this.getPackageManager().getPackageInfo(getPackageName(), 0);
         String sVersionCode = pinfo.versionCode; // 1
         String sVersionName = pinfo.versionName; // 1.0
         String sPackName = getPackageName(); // cz.okhelp.my_app
         int nSdkVersion = Integer.parseInt(Build.VERSION.SDK); 
         int nSdkVers = Build.VERSION.SDK_INT; 

それがうまくいくことを願っています。


0

アプリの起動時に最初に実行されるJavaモジュールを作成します。このモジュールは、android Applicationクラスを拡張し、すべてのグローバルアプリ変数を初期化し、アプリ全体のユーティリティルーチンも含みます-

public class MyApplicationName extends Application {

    private final String PACKAGE_NAME = "com.mysite.myAppPackageName";

    public String getPackageName() { return PACKAGE_NAME; }
}

もちろん、これにはAndroidシステムからパッケージ名を取得するロジックを含めることができます。ただし、上記はandroidから取得するよりも小さく、高速で、よりクリーンなコードです。

AndroidManifest.xmlファイルにエントリを配置して、アクティビティを実行する前にAndroidにアプリケーションモジュールを実行するように指示してください-

<application 
    android:name=".MyApplicationName" 
    ...
>

次に、他のモジュールからパッケージ名を取得するには、次のように入力します。

MyApp myApp = (MyApp) getApplicationContext();
String myPackage = myApp.getPackageName();

アプリケーションモジュールを使用すると、コンテキストが必要だが存在しないモジュールのコンテキストも提供されます。


0

使用:BuildConfig.APPLICATION_IDを使用して、どこにでもパッケージ名を取得します(つまり、サービス、レシーバー、アクティビティ、フラグメントなど)。

例:文字列PackageName = BuildConfig.APPLICATION_ID;


0

Android.appをインポートするだけで使用できます。 <br/>Application.getProcessName()<br/>

コンテキスト、ビュー、またはアクティビティなしで現在のアプリケーションプロセス名を取得します。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.