本文整理汇总了Java中com.facebook.internal.DialogPresenter.canPresentNativeDialogWithFeature方法的典型用法代码示例。如果您正苦于以下问题:Java DialogPresenter.canPresentNativeDialogWithFeature方法的具体用法?Java DialogPresenter.canPresentNativeDialogWithFeature怎么用?Java DialogPresenter.canPresentNativeDialogWithFeature使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.facebook.internal.DialogPresenter
的用法示例。
在下文中一共展示了DialogPresenter.canPresentNativeDialogWithFeature方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: canShowNativeDialog
import com.facebook.internal.DialogPresenter; //导入方法依赖的package包/类
public static boolean canShowNativeDialog() {
return DialogPresenter.canPresentNativeDialogWithFeature(getFeature());
}
示例2: canShowNative
import com.facebook.internal.DialogPresenter; //导入方法依赖的package包/类
private static boolean canShowNative(Class<? extends ShareContent> contentType) {
DialogFeature feature = getFeature(contentType);
return feature != null && DialogPresenter.canPresentNativeDialogWithFeature(feature);
}
示例3: canShowNativeDialog
import com.facebook.internal.DialogPresenter; //导入方法依赖的package包/类
public static boolean canShowNativeDialog() {
return (Build.VERSION.SDK_INT >= ShareConstants.MIN_API_VERSION_FOR_WEB_FALLBACK_DIALOGS) &&
DialogPresenter.canPresentNativeDialogWithFeature(getFeature());
}
示例4: canShow
import com.facebook.internal.DialogPresenter; //导入方法依赖的package包/类
/**
* Indicates whether it is possible to show the dialog for
* {@link com.facebook.share.model.ShareContent} of the specified type.
*
* @param contentType Class of the intended {@link com.facebook.share.model.ShareContent} to
* send.
* @return True if the specified content type can be shown via the dialog
*/
public static boolean canShow(Class<? extends ShareContent> contentType) {
DialogFeature feature = getFeature(contentType);
return feature != null && DialogPresenter.canPresentNativeDialogWithFeature(feature);
}