<legend id='DyFw3'><style id='DyFw3'><dir id='DyFw3'><q id='DyFw3'></q></dir></style></legend>

    <small id='DyFw3'></small><noframes id='DyFw3'>

      <i id='DyFw3'><tr id='DyFw3'><dt id='DyFw3'><q id='DyFw3'><span id='DyFw3'><b id='DyFw3'><form id='DyFw3'><ins id='DyFw3'></ins><ul id='DyFw3'></ul><sub id='DyFw3'></sub></form><legend id='DyFw3'></legend><bdo id='DyFw3'><pre id='DyFw3'><center id='DyFw3'></center></pre></bdo></b><th id='DyFw3'></th></span></q></dt></tr></i><div id='DyFw3'><tfoot id='DyFw3'></tfoot><dl id='DyFw3'><fieldset id='DyFw3'></fieldset></dl></div>

      • <bdo id='DyFw3'></bdo><ul id='DyFw3'></ul>
    1. <tfoot id='DyFw3'></tfoot>
    2. 从 Android 中的 apk 文件中读取 Activity 名称

      Reading Activity names from apk file in Android(从 Android 中的 apk 文件中读取 Activity 名称)

      <tfoot id='HCFQu'></tfoot>
        <bdo id='HCFQu'></bdo><ul id='HCFQu'></ul>

        1. <small id='HCFQu'></small><noframes id='HCFQu'>

          • <legend id='HCFQu'><style id='HCFQu'><dir id='HCFQu'><q id='HCFQu'></q></dir></style></legend>
              <tbody id='HCFQu'></tbody>
            • <i id='HCFQu'><tr id='HCFQu'><dt id='HCFQu'><q id='HCFQu'><span id='HCFQu'><b id='HCFQu'><form id='HCFQu'><ins id='HCFQu'></ins><ul id='HCFQu'></ul><sub id='HCFQu'></sub></form><legend id='HCFQu'></legend><bdo id='HCFQu'><pre id='HCFQu'><center id='HCFQu'></center></pre></bdo></b><th id='HCFQu'></th></span></q></dt></tr></i><div id='HCFQu'><tfoot id='HCFQu'></tfoot><dl id='HCFQu'><fieldset id='HCFQu'></fieldset></dl></div>
                本文介绍了从 Android 中的 apk 文件中读取 Activity 名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我想从一个 android apk 文件中提取所有活动名称.知道怎么可能做到吗?

                I want to extract all the activities names from an android apk file. Any idea how possibly it can be done?

                谢谢卡普斯

                推荐答案

                可以使用PackageManager方法getPackageArchiveInfo 从 APK 文件中检索信息.假设您的 APK 位于 SD 卡的根目录中,您可以使用以下代码:

                You can use the PackageManager method getPackageArchiveInfo to retrieve the information from an APK file. Assuming your APK lives in the root of your SD card, you can use this code:

                    String apkPath = Environment.getExternalStorageDirectory().getAbsolutePath() 
                                   + "/MyApp.apk";
                    PackageManager pm = getPackageManager();
                
                    PackageInfo info = pm.getPackageArchiveInfo(apkPath, 
                                           PackageManager.GET_ACTIVITIES);
                    //Log.i("ActivityInfo", "Package name is " + info.packageName);
                
                    for (android.content.pm.ActivityInfo a : info.activities) {
                        Log.i("ActivityInfo", a.name);
                    }
                

                您可以在 ActivityInfo 和 PackageInfo 对象中找到大量其他信息.

                There is plenty of additional information you can find in the ActivityInfo and PackageInfo objects.

                这篇关于从 Android 中的 apk 文件中读取 Activity 名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Lucene Porter Stemmer not public(Lucene Porter Stemmer 未公开)
                How to index pdf, ppt, xl files in lucene (java based or python or php any of these is fine)?(如何在 lucene 中索引 pdf、ppt、xl 文件(基于 java 或 python 或 php 中的任何一个都可以)?)
                KeywordAnalyzer and LowerCaseFilter/LowerCaseTokenizer(KeywordAnalyzer 和 LowerCaseFilter/LowerCaseTokenizer)
                How to search between dates (Hibernate Search)?(如何在日期之间搜索(休眠搜索)?)
                How to get positions from a document term vector in Lucene?(如何从 Lucene 中的文档术语向量中获取位置?)
                Java Lucene 4.5 how to search by case insensitive(Java Lucene 4.5如何按不区分大小写进行搜索)
                  <tbody id='UisVb'></tbody>
                  • <bdo id='UisVb'></bdo><ul id='UisVb'></ul>

                    <tfoot id='UisVb'></tfoot>
                  • <small id='UisVb'></small><noframes id='UisVb'>

                    <i id='UisVb'><tr id='UisVb'><dt id='UisVb'><q id='UisVb'><span id='UisVb'><b id='UisVb'><form id='UisVb'><ins id='UisVb'></ins><ul id='UisVb'></ul><sub id='UisVb'></sub></form><legend id='UisVb'></legend><bdo id='UisVb'><pre id='UisVb'><center id='UisVb'></center></pre></bdo></b><th id='UisVb'></th></span></q></dt></tr></i><div id='UisVb'><tfoot id='UisVb'></tfoot><dl id='UisVb'><fieldset id='UisVb'></fieldset></dl></div>

                          <legend id='UisVb'><style id='UisVb'><dir id='UisVb'><q id='UisVb'></q></dir></style></legend>