本文整理汇总了Java中android.content.pm.PackageParser.IntentInfo方法的典型用法代码示例。如果您正苦于以下问题:Java PackageParser.IntentInfo方法的具体用法?Java PackageParser.IntentInfo怎么用?Java PackageParser.IntentInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.content.pm.PackageParser
的用法示例。
在下文中一共展示了PackageParser.IntentInfo方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: IntentInfo
import android.content.pm.PackageParser; //导入方法依赖的package包/类
public IntentInfo(PackageParser.IntentInfo info) {
this.filter = info;
this.hasDefault = info.hasDefault;
this.labelRes = info.labelRes;
if (info.nonLocalizedLabel != null) {
this.nonLocalizedLabel = info.nonLocalizedLabel.toString();
}
this.icon = info.icon;
this.logo = info.logo;
if (Build.VERSION.SDK_INT > Build.VERSION_CODES.KITKAT) {
this.banner = info.banner;
}
}
示例2: ActivityIntentInfo
import android.content.pm.PackageParser; //导入方法依赖的package包/类
public ActivityIntentInfo(PackageParser.IntentInfo info) {
super(info);
}
示例3: ServiceIntentInfo
import android.content.pm.PackageParser; //导入方法依赖的package包/类
public ServiceIntentInfo(PackageParser.IntentInfo info) {
super(info);
}
示例4: ProviderIntentInfo
import android.content.pm.PackageParser; //导入方法依赖的package包/类
public ProviderIntentInfo(PackageParser.IntentInfo info) {
super(info);
}