• Dear Cerberus X User!

    As we prepare to transition the forum ownership from Mike to Phil (TripleHead GmbH), we need your explicit consent to transfer your user data in accordance with our amended Terms and Rules in order to be compliant with data protection laws.

    Important: If you accept the amended Terms and Rules, you agree to the transfer of your user data to the future forum owner!

    Please read the new Terms and Rules below, check the box to agree, and click "Accept" to continue enjoying your Cerberus X Forum experience. The deadline for consent is April 5, 2024.

    Do not accept the amended Terms and Rules if you do not wish your personal data to be transferred to the future forum owner!

    Accepting ensures:

    - Continued access to your account with a short break for the actual transfer.

    - Retention of your data under the same terms.

    Without consent:

    - You don't have further access to your forum user account.

    - Your account and personal data will be deleted after April 5, 2024.

    - Public posts remain, but usernames indicating real identity will be anonymized. If you disagree with a fictitious name you have the option to contact us so we can find a name that is acceptable to you.

    We hope to keep you in our community and see you on the forum soon!

    All the best

    Your Cerberus X Team

Snippet Android share photo, Cerberus Xtension

Wingnut

Well-known member
3rd Party Module Dev
Tutorial Author
Joined
Jan 2, 2020
Messages
1,414
This Cerberus Xtension is an Android example

This example shows how you could add functionality to share photos from Cerberus on your Android device.

example.cxs
Cerberus:
Strict
Import mojo2
Import "commands.java"

Extern
Function SharePhoto:Void(address:String) = "commands.SharePhoto"
Public

Function Main:Int()
    New Application()
    Return 0
End

Class Application Extends App Final
   
    Field canvas:Canvas
    Field image:Image
   
    Method OnCreate:Int()
        canvas = New Canvas()
        SetUpdateRate 0
        image = Image.Load("photo.jpg",0,0,0)
        Return 0
    End
   
    Method OnUpdate:Int()
        If TouchHit(0) Then SharePhoto("photo.jpg")
        If KeyHit(KEY_ESCAPE) Then OnClose() ; Return 0
        Return 0
    End
   
    Method OnRender:Int()
        canvas.Clear
        canvas.DrawImage image,0,0
        canvas.Flush
        Return 0
    End
End

commands.java
Java:
class commands
{
    static void SharePhoto(String address) {
        android.content.Intent shareIntent = new android.content.Intent(Intent.ACTION_SEND,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
        shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
        shareIntent.putExtra(Intent.EXTRA_STREAM, android.net.Uri.fromFile(new File(address)));
        shareIntent.setType("image/jpeg");
        android.content.Intent send = Intent.createChooser(shareIntent,null);
        BBAndroidGame._androidGame._activity.startActivity(send);
    }
}
 

Attachments

  • Share.zip
    7.3 KB · Views: 91
Back
Top Bottom