Some test text!

Search
Hamburger Icon

Xamarin / Guides / Annotation sync (Android)

Annotation sync

Annotations can be synced in realtime to allow for collaboration between clients.

Annotation sync for Xamarin.Android viewer

This tutorial only applies to Xamarin.Android.

Apryse supports annotation syncing between different clients to allow for collaboration. All the required locking, change tracking, merging and view updating are handled internally. Below are instructions on how to handle the import and export of annotation changes on the client side. While the server component is not described here, that implementation would be straightforward. The server would receive XFDF XML data, which it would then pass onto all other active clients that are part of the collaboration session. The clients take care of the updating. The server can store any XFDF data as it likes, since the data is just an XML string.

Requirements

Here are a few requirements for syncing to work as expected:

  • A permanent and unique string identifier is needed for the userId. UserId needs to be permanent and cannot be changed later on. For example, if Alice was used for the userId, however, was later changed to AliceB, the viewer will no longer treat it as the same user. Therefore, we recommend that you generate a UUID for each user.
  • Similar to userId, each annotation will also need its own UUID, aka annotId. This UUID also needs to be permanent and unique.
  • Annotation changes are stored as XFDF command strings, which PDFNet generates when changes are made. However, any custom modification to the XFDF command string could lead to unexpected results, thus, modification to the XFDF command string are not recommended.
  • Existing annotations that do not have a unique identifier will not work, it is recommended that you pre-process all annotations to make sure they all have unique identifiers.
  • Undo and redo will be automatically enabled upon using annotation syncing.

Initialize and sending annotation changes

Add the following after ToolManager is initialized:

// supply a permanent and unique userId here
mToolManager.EnableAnnotManager("12345-67890-ABCD-EFGH");
mToolManager.AnnotManager.LocalChanged += (sender, e) =>
{
    Console.WriteLine("LocalChanged: action: " + e.Action + ", xfdf: " + e.XfdfCommand);
    // a local annotation change event has happened,
    // now is the time to send the XFDF command string to your remote service
    // action is one of {@link AnnotManager.AnnotationAction#ADD}
    //                  {@link AnnotManager.AnnotationAction#MODIFY}
    //                  {@link AnnotManager.AnnotationAction#DELETE}
    //                  {@link AnnotManager.AnnotationAction#UNDO}
    //                  {@link AnnotManager.AnnotationAction#REDO}
    // xfdfCommand is the XFDF command string, modification to this string is not recommended
};

Receive annotation changes

When an annotation change event is received from a remote service, add the following to notify the viewer about the change:

public void ReceivedAnnotationEvents(String xfdfCommand)
{
    mToolManager.AnnotManager?.OnRemoteChange(xfdfCommand);
}

Jump to annotation

To jump to an annotation by id:

public void JumpToAnnotation(String annotId)
{
    mToolManager.AnnotManager?.JumpToAnnot(annotId);
}

Get the answers you need: Chat with us