web-dev-qa-db-ja.com

一部のアプリではgetLaunchIntentForPackageがnullです

インストールしたアプリのリストをAndroid TVまたはFire TVから携帯電話に送信するサービスを構築しています。その後、電話は起動したいアプリのパッケージ名を返信しますサービスがそれを起動します。

これはリストを作成するコードです

public List<InstalledApp> GetInstalledApps(boolean isAndroid) {
    PackageManager pm = getPackageManager();
    List<ApplicationInfo> allPackages = pm.getInstalledApplications(PackageManager.GET_META_DATA);
    List<InstalledApp> userPackages = new ArrayList<InstalledApp>();

    for (ApplicationInfo packageInfo : allPackages) {

        if (isSystemPackage(packageInfo)) continue;

        InstalledApp app = new InstalledApp();
        app.setPackageName(packageInfo.packageName);
        app.setAppName(pm.getApplicationLabel(packageInfo).toString());
        if (!isAndroid) {
            app.setIcon(pm.getApplicationIcon(packageInfo));
        }
        app.setAccentColor(getAccentColor(pm.getApplicationIcon(packageInfo)));


        userPackages.add(app);
    }

    return userPackages;
}

これは私がアプリを起動する方法です

public void launchApp(String packageName) {
    PackageManager pm = getPackageManager();
    Intent intent = pm.getLaunchIntentForPackage(packageName);
    startActivity(intent);
}

Fire TVではすべてが完璧に機能しますが、Android TVでは多くのアプリの意図が常にnullです。これらはほんの一部です。

  • com.haystack.Android
  • com.netflix.ninja
  • tv.pluto.Android
  • com.bamnetworks.mlbtv

ただし、同じコードでこれらのアプリは問題なく動作します。

  • com.hulu.livingroomplus
  • com.sling
  • com.frogmind.badland
  • com.songza.tv

誰かが私が間違っているかもしれないことについて何か洞察を提供できますか?

ありがとう!

編集:私もこれを試しましたが、例外が発生します

Android.content.ActivityNotFoundException:Intentを処理するアクティビティが見つかりません{cat = [Android.intent.category.LEANBACK_LAUNCHER] flg = 0x10000000 pkg = com.netflix.ninja}

public void launchApp(String packageName) {
    Intent intent = new Intent();
    intent.setPackage(packageName);
    intent.addCategory("Android.intent.category.LEANBACK_LAUNCHER");
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(intent);
}

編集2:

これは私のために働くコードです:

public void launchApp(String packageName) {
    Intent intent = new Intent();
    intent.setPackage(packageName);

    PackageManager pm = getPackageManager();
    List<ResolveInfo> resolveInfos = pm.queryIntentActivities(intent, 0);
    Collections.sort(resolveInfos, new ResolveInfo.DisplayNameComparator(pm));

    if(resolveInfos.size() > 0) {
        ResolveInfo launchable = resolveInfos.get(0);
        ActivityInfo activity = launchable.activityInfo;
        ComponentName name=new ComponentName(activity.applicationInfo.packageName,
                activity.name);
        Intent i=new Intent(Intent.ACTION_MAIN);

        i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
                Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
        i.setComponent(name);

        startActivity(i);
    }
}
18
Jeremy Roberts

ホーム画面スタイルのランチャーを作成するには、アプリを探すのではなく、アプリごとにIntentsを起動してみます。 PackageManagerqueryIntentActivities()を使用して、起動可能なアクティビティを探します。

たとえば、このアクティビティ( このサンプルプロジェクト から)は、この手法を使用してホーム画面スタイルのランチャーを実装します。

/***
  Copyright (c) 2008-2012 CommonsWare, LLC
  Licensed under the Apache License, Version 2.0 (the "License"); you may not
  use this file except in compliance with the License. You may obtain a copy
  of the License at http://www.Apache.org/licenses/LICENSE-2.0. Unless required
  by applicable law or agreed to in writing, software distributed under the
  License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
  OF ANY KIND, either express or implied. See the License for the specific
  language governing permissions and limitations under the License.

  From _The Busy Coder's Guide to Android Development_
    http://commonsware.com/Android
*/

package com.commonsware.Android.launchalot;

import Android.app.ListActivity;
import Android.content.ComponentName;
import Android.content.Intent;
import Android.content.pm.ActivityInfo;
import Android.content.pm.PackageManager;
import Android.content.pm.ResolveInfo;
import Android.os.Bundle;
import Android.view.View;
import Android.view.ViewGroup;
import Android.widget.ArrayAdapter;
import Android.widget.ImageView;
import Android.widget.ListView;
import Android.widget.TextView;
import Java.util.Collections;
import Java.util.List;

public class Launchalot extends ListActivity {
  AppAdapter adapter=null;

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

    PackageManager pm=getPackageManager();
    Intent main=new Intent(Intent.ACTION_MAIN, null);

    main.addCategory(Intent.CATEGORY_LAUNCHER);

    List<ResolveInfo> launchables=pm.queryIntentActivities(main, 0);

    Collections.sort(launchables,
                     new ResolveInfo.DisplayNameComparator(pm)); 

    adapter=new AppAdapter(pm, launchables);
    setListAdapter(adapter);
  }

  @Override
  protected void onListItemClick(ListView l, View v,
                                 int position, long id) {
    ResolveInfo launchable=adapter.getItem(position);
    ActivityInfo activity=launchable.activityInfo;
    ComponentName name=new ComponentName(activity.applicationInfo.packageName,
                                         activity.name);
    Intent i=new Intent(Intent.ACTION_MAIN);

    i.addCategory(Intent.CATEGORY_LAUNCHER);
    i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
                Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
    i.setComponent(name);

    startActivity(i);    
  }

  class AppAdapter extends ArrayAdapter<ResolveInfo> {
    private PackageManager pm=null;

    AppAdapter(PackageManager pm, List<ResolveInfo> apps) {
      super(Launchalot.this, R.layout.row, apps);
      this.pm=pm;
    }

    @Override
    public View getView(int position, View convertView,
                          ViewGroup parent) {
      if (convertView==null) {
        convertView=newView(parent);
      }

      bindView(position, convertView);

      return(convertView);
    }

    private View newView(ViewGroup parent) {
      return(getLayoutInflater().inflate(R.layout.row, parent, false));
    }

    private void bindView(int position, View row) {
      TextView label=(TextView)row.findViewById(R.id.label);

      label.setText(getItem(position).loadLabel(pm));

      ImageView icon=(ImageView)row.findViewById(R.id.icon);

      icon.setImageDrawable(getItem(position).loadIcon(pm));
    }
  }
}

Android TVデバイスでは、LEANBACK_LAUNCHERアクティビティも検索する必要があります。これは、Android TVが使用するものであり、TV固有のAPKはそうではない可能性があるためです。定期的なLAUNCHERアクティビティがあるか、せいぜいテレビでの使用に必ずしも理想的でないアクティビティがあります。

19
CommonsWare

getLaunchIntentForPackage(packageName)を呼び出すと、同じエラーが発生しました。マニフェストファイルのランチャーアクティビティのintent-filterタグにこれを追加することで修正されました。

<category Android:name="Android.intent.category.LAUNCHER" />

Android Studioで新しいTVアプリケーションを作成する場合、上記にはデフォルトがありませんでしたが、代わりに、マニフェストファイルのランチャーアクティビティのインテントフィルタータグのデフォルトとしてこれを使用しています。

<category Android:name="Android.intent.category.LEANBACK_LAUNCHER" />
1
s-hunter