原文地址:http://developer.android.com/resources/articles/can-i-use-this-intent.html
——转载请注明出处,谢谢。
Android提供了一个非常强大并且容易使用的消息类型:Intent(意图)。可以使用intents把应用变得简洁、明了;同时又能加强应用的模块化和可复用性。就像The Android Home screen和AnyCut这两款应用,广泛地使用intents去创建快捷方式。
尽管使用松耦合的API是一件美好的事情,但这并不保证你发送的intent肯定会被另外一个应用接收。特别是在与第三方应用程序交互的时候,经常会发生这种情况,就像Panoramio和它的RADAR intent。
这篇文章介绍了一种技术,使用这种技术,就能事先确定系统中是否存在某款应用能对你发送的intent有所回应。下面的例子,展示了一个很有帮助的方法,它能通过搜索系统的包管理器(package manager),查看是否有一个应用能够回应某个特定的intent。例如,如果你想显示或隐藏某些发送intents的选项,可以传递给这个方法一个 intent进行判断。/** * Indicates whether the specified action can be used as an intent. This * method queries the package manager for installed packages that can * respond to an intent with the specified action. If no suitable package is * found, this method returns false. * * @param context The application's environment. * @param action The Intent action to check for availability. * * @return True if an Intent with the specified action can be sent and * responded to, false otherwise. */ public static boolean isIntentAvailable(Context context, String action) { final PackageManager packageManager = context.getPackageManager(); final Intent intent = new Intent(action); List<ResolveInfo> list = packageManager.queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY); return list.size() > 0; }
这里展示如何使用这个方法:
@Override public boolean onPrepareOptionsMenu(Menu menu) { final boolean scanAvailable = isIntentAvailable(this, "com.google.zxing.client.android.SCAN"); MenuItem item; item = menu.findItem(R.id.menu_item_add); item.setEnabled(scanAvailable); return super.onPrepareOptionsMenu(menu); } 在这个例子中,如果Barcode Scanner这个应用没有安装的话,菜单将是灰色的。
在这个例子中,如果Barcode Scanner这个应用没有安装的话,菜单将是灰色的。
本文介绍了一种技术,用于检查Android系统中是否存在能响应特定Intent的应用。通过查询包管理器,可以确定是否具备发送Intent的条件,并展示了如何在代码中实现这一功能。
2335

被折叠的 条评论
为什么被折叠?



