FacebookDialog.VideoShareDialogBuilder
Lớp này không còn khả dụng trong phiên bản gần đây nhất của SDK.
Đã có phiên bản mới hơn của lớp này. Hãy kiểm tra phiên bản mới nhất.

Provides a builder which can construct a FacebookDialog instance suitable for presenting the native Share dialog for sharing videos. This builder will throw an exception if the Facebook application is not installed, so it should only be used if FacebookDialog.canPresentShareDialog(android.content.Context, com.facebook.widget.FacebookDialog.ShareDialogFeature...) indicates the capability is available.

Mở rộng:Builder
Gói:widget
Xây dựng
FacebookDialog.VideoDialogBuilderBase(Activity)

Constructor.

public FacebookDialog.VideoDialogBuilderBase(Activity activity)
Thông sốMô tả
activityThe Activity which is presenting the native Share dialog; must not be null
FacebookDialog.VideoShareDialogBuilder(Activity)

Constructor.

public FacebookDialog.VideoShareDialogBuilder(Activity activity)
Thông sốMô tả
activityThe Activity which is presenting the native Share dialog; must not be null
Phương thức thực thể
setPlace(String)

Sets the place for the item to be shared.

public VideoDialogBuilderBase setPlace(String place)
Thông sốMô tả
placeThe Facebook ID of the place
Returns
This instance of the builder
addVideoFile(File)

Adds a video to display in the native Share dialog, by specifying the location in the file system. The dialog's callback will be called once the user has shared the video, but the video may be uploaded in the background by the Facebook app; apps wishing to be notified when the video upload has succeeded or failed should extend the FacebookBroadcastReceiver class and register it in their AndroidManifest.xml.

public VideoDialogBuilderBase addVideoFile(File video)
Thông sốMô tả
videoA Files representing the video to be uploaded
Returns
This instance of the builder
setVideoUrl(String)

Sets the video url to display in the native Share dialog, by specifying the content:// or file:/// uri. The dialog's callback will be called once the user has shared the video, but the video may be uploaded in the background by the Facebook app; apps wishing to be notified when the video upload has succeeded or failed should extend the FacebookBroadcastReceiver class and register it in their AndroidManifest.xml.

public VideoDialogBuilderBase setVideoUrl(String videoUrl)
Thông sốMô tả
videoUrlA url of the video in the form of content:// or file:///
Returns
This instance of the builder