จะรับชื่อแพ็คเกจได้จากที่ไหน?


346

ฉันทราบถึงความพร้อมใช้งานของContext.getApplicationContext ()และView.getContext ()ซึ่งฉันสามารถเรียกContext.getPackageName ()เพื่อดึงชื่อแพ็คเกจของแอปพลิเคชันได้

พวกเขาทำงานถ้าฉันโทรจากวิธีการที่ a ViewหรือActivityวัตถุที่มีอยู่ แต่ถ้าฉันต้องการค้นหาชื่อแพคเกจจากคลาสอิสระทั้งหมดโดยไม่มีViewหรือActivityมีวิธีทำ (โดยตรงหรือโดยอ้อม)?


7
คำตอบที่ได้รับการยอมรับจะทำให้แอปพลิเคชันของคุณผิดพลาดเป็นครั้งคราว - อ่านความคิดเห็นโดย AddDev & Turbo และขอบคุณทั้งคู่สำหรับการแนะนำวิธีแก้ปัญหา
nikib3ro

1
คุณอาจไม่มีตัวเลือกอื่น แต่เป็นเรื่องของการปฏิบัติที่ดีที่สุดฉันจะบอกว่าดีกว่าที่จะผ่านสิ่งนี้ไปยังชั้นเรียนที่คุณต้องการจากจุดบริบทสุดท้ายของคุณในบางวิธี คุณกำลังเข้าถึงข้อมูลบริบทแบบรันไทม์จากคลาสที่ไม่ทราบเกี่ยวกับบริบทในแบบคงที่ - มีกลิ่นไม่ดีต่อฉัน อีกวิธีการหนึ่งคือการเขียนโค้ดที่ใดที่หนึ่ง
อดัม

คำตอบ:


488

แนวคิดคือมีตัวแปรสแตติกในกิจกรรมหลักของคุณโดยอินสแตนซ์เป็นชื่อแพ็กเกจ จากนั้นเพียงแค่อ้างอิงตัวแปรนั้น

คุณจะต้องเริ่มต้นด้วย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ทำให้มันไม่เปลี่ยนรูปการเริ่มต้นสามารถเฉพาะในผู้สร้างและเพียงครั้งเดียว onCreate()ไม่ใช่ตัวสร้าง โปรดแก้ไขให้ถูกต้องหากฉันเข้าใจผิด
ef2011

79
วิธีนี้ไม่ถูกต้อง ตัวอย่างเช่นหากแอปพลิเคชันของคุณไปที่พื้นหลังเมื่อคุณอยู่ในโหมดเปิดใช้งานชั่วคราวและจากนั้นจะถูกกู้คืน ไม่สามารถเรียกใช้ onCreate () ของกิจกรรมหลักของคุณและ PACKAGE_NAME ของคุณจะว่างเปล่า! นอกจากนี้จะเกิดอะไรขึ้นถ้าใบสมัครของคุณมี 10 จุดเข้าและไม่มี "กิจกรรมหลัก" ที่ชัดเจน? คุณสามารถตรวจสอบคำตอบของฉันที่คำถามนี้สำหรับวิธีการที่ถูกต้อง
Addev

3
@ Turbo ถ้า Android ฆ่ากระบวนการonCreateจะต้องถูกเรียกอีกครั้งดังนั้นวิธีนี้ยังคงไม่ควรมีปัญหา
John Leehey

276

หากคุณใช้ gradle-android-plugin เพื่อสร้างแอปของคุณคุณสามารถใช้

BuildConfig.APPLICATION_ID

เพื่อดึงชื่อแพคเกจจากขอบเขตใด ๆ รวม แบบคงที่


23
นั่นคือวิธีที่เหมาะสมควรเป็นคำตอบที่ยอมรับได้
aberaud

4
หมายเหตุ: ด้วยการสร้างหลายรสชาติสิ่งนี้จะส่งคืน (ขึ้นอยู่กับการนำเข้าที่ใช้เพื่อเข้าถึงคลาส BuildConfig) ชื่อแพ็คเกจของการกำหนดค่าเริ่มต้นไม่ใช่ชื่อแพคเกจของรสชาติ
Rolf ツ

2
@Rolf ツไม่เป็นความจริงมันจะส่งคืนชื่อแพ็กเกจที่ถูกต้องของแอปพลิเคชั่น) บางทีคุณอาจเข้าใจผิดกับชื่อแพ็กเกจของคลาส Java ของคุณ
Billda

29
ระวังหากใช้สิ่งนี้ในโครงการห้องสมุด - สิ่งนี้จะไม่ทำงาน
zyamys

6
ระวังหากใช้สิ่งนี้กับโมดูลหลายตัวในโครงการเช่นกัน
user802421

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

3
มันเป็นเธรดที่ปลอดภัยเนื่องจากการอ้างอิงถึงอินสแตนซ์เป็นสิ่งแรกที่กำหนดเมื่อเปิดตัวแอป
Addev

17
ต่อปัญหานี้: code.google.com/p/android/issues/detail?id=8727 วัตถุ ContentProvider ถูกสร้างขึ้นก่อนวัตถุแอปพลิเคชันซึ่งเห็นได้ชัดว่าตรงกันข้ามกับเอกสาร แต่ก็เห็นได้ชัดว่าตามและตามการออกแบบ สิ่งนี้อาจส่งผลให้อินสแตนซ์ของคุณยังคงไม่ได้รับการตั้งค่าถ้า getInstance () ถูกเรียกระหว่างการเริ่มต้นของ ContentProvider
Carl

3
เอกสารเกี่ยวกับApplication.onCreate()มีการเปลี่ยนแปลงเพื่อสะท้อนถึงสิ่งนี้: ตอนนี้มันระบุว่า "เรียกเมื่อแอปพลิเคชันเริ่มต้นก่อนที่กิจกรรมใด ๆ บริการหรือวัตถุรับ (ไม่รวมผู้ให้บริการเนื้อหา)"
พอลแลมเมอร์มา

2
นี่ควรเป็นคำตอบที่เลือกเนื่องจากบริบทจะไม่มีวันตายไม่ว่ากิจกรรมใดจะทำงาน
Elad Nava

43

หากคุณใช้ gradle build ให้ใช้สิ่งนี้: BuildConfig.APPLICATION_IDเพื่อรับชื่อแพ็กเกจของแอปพลิเคชัน


6
Application ID และชื่อแพ็คเกจต่างกัน ID แอปพลิเคชันถูกกำหนดผ่านไฟล์ gradle.build และชื่อแพ็กเกจถูกกำหนดใน Manifest ในขณะที่พวกเขามักจะมีค่าเดียวกันพวกเขาก็มักจะแตกต่างกันในสถานการณ์สร้างที่ซับซ้อนมากขึ้น หนึ่งสามารถกำหนด ID แอปพลิเคชันที่แตกต่างกันให้กับการกำหนดค่าการสร้างที่แตกต่างกันในขณะที่ชื่อแพคเกจยังคงไม่เปลี่ยนแปลง
Uli

3
@Uli สำหรับผู้ที่ต้องการทราบความแตกต่างในรายละเอียดเพิ่มเติมtools.android.com/tech-docs/new-build-system/…
Kevin Lee

10
@Uli ที่ถูกกล่าวถึงแม้ว่า applicationId ใน app.gradle defers จาก packageName ภายในของ AndroidManifest.xml การเรียก context.getPackageName () ส่งคืน applicationId และไม่ใช่ packageName ภายใน AndroidManifest.xml จุดประสงค์ของการสร้างระบบใหม่คือการแยกทั้งสองอย่างดังนั้น applicationId เป็นชื่อแพคเกจที่แท้จริงของแอปที่รู้จักกันใน Google Play และอุปกรณ์ที่ติดตั้งบน - มันไม่สามารถเปลี่ยนแปลงได้หลังจากการปรับใช้ จุดของฉันคือมันก็โอเคที่จะใช้ BuildConfig.APPLICATION_ID แจ้งให้เราทราบหากฉันเข้าใจผิด (:
เควินลี

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);

Caveat:สิ่งนี้จะต้องทำในเธรดหลักของแอปพลิเคชัน

ขอขอบคุณที่โพสต์บล็อกนี้สำหรับความคิด: 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 และจะเริ่มต้นตัวแปรแอปทั่วโลกและยังมีรูทีนยูทิลิตี้ทั่วทั้งแอป -

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 เพื่อรับชื่อแพคเกจได้ทุกที่ (เช่นบริการผู้รับกิจกรรมชิ้นส่วน ฯลฯ )

ตัวอย่าง: String PackageName = BuildConfig.APPLICATION_ID;


0

เพียงนำเข้า Android.app, จากนั้นคุณสามารถใช้: <br/>Application.getProcessName()<br/>

รับชื่อกระบวนการแอปพลิเคชันปัจจุบันโดยไม่มีบริบทมุมมองหรือกิจกรรม

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.