Efficient way of passing object between android applications with database










0














I have an application that shows vocabulary words and it's examples or explanations for 3 levels of a foreign language. Almost 3500 words of text(no image or sound files) stored in local room database. I present selected language level of words on recyclerview in a fragment also show word detail on a cardview in another fragment.



I am planning to show those fragments side by side on landscape and tablet layouts. And i also plan to set previous and next buttons or use swipe to left or right method on detail activity for showing previous or next word on same cardview.(which means i'll have a query by id method on both cases)



I couldn't decide for passing method of the object between these two activities.
Which one is a better approach that passing the object by parcelable or just passing the object "id" and query it by viewmodel from database?



ps. this is my first question after one year use of stackoverflow and english is not mother language. please don't be too hard on me if am wrong at somewhere.



sample activity images










share|improve this question



















  • 1




    pass the row id and use any DAO method to get the details based on that id
    – pskink
    Nov 12 at 8:21















0














I have an application that shows vocabulary words and it's examples or explanations for 3 levels of a foreign language. Almost 3500 words of text(no image or sound files) stored in local room database. I present selected language level of words on recyclerview in a fragment also show word detail on a cardview in another fragment.



I am planning to show those fragments side by side on landscape and tablet layouts. And i also plan to set previous and next buttons or use swipe to left or right method on detail activity for showing previous or next word on same cardview.(which means i'll have a query by id method on both cases)



I couldn't decide for passing method of the object between these two activities.
Which one is a better approach that passing the object by parcelable or just passing the object "id" and query it by viewmodel from database?



ps. this is my first question after one year use of stackoverflow and english is not mother language. please don't be too hard on me if am wrong at somewhere.



sample activity images










share|improve this question



















  • 1




    pass the row id and use any DAO method to get the details based on that id
    – pskink
    Nov 12 at 8:21













0












0








0







I have an application that shows vocabulary words and it's examples or explanations for 3 levels of a foreign language. Almost 3500 words of text(no image or sound files) stored in local room database. I present selected language level of words on recyclerview in a fragment also show word detail on a cardview in another fragment.



I am planning to show those fragments side by side on landscape and tablet layouts. And i also plan to set previous and next buttons or use swipe to left or right method on detail activity for showing previous or next word on same cardview.(which means i'll have a query by id method on both cases)



I couldn't decide for passing method of the object between these two activities.
Which one is a better approach that passing the object by parcelable or just passing the object "id" and query it by viewmodel from database?



ps. this is my first question after one year use of stackoverflow and english is not mother language. please don't be too hard on me if am wrong at somewhere.



sample activity images










share|improve this question















I have an application that shows vocabulary words and it's examples or explanations for 3 levels of a foreign language. Almost 3500 words of text(no image or sound files) stored in local room database. I present selected language level of words on recyclerview in a fragment also show word detail on a cardview in another fragment.



I am planning to show those fragments side by side on landscape and tablet layouts. And i also plan to set previous and next buttons or use swipe to left or right method on detail activity for showing previous or next word on same cardview.(which means i'll have a query by id method on both cases)



I couldn't decide for passing method of the object between these two activities.
Which one is a better approach that passing the object by parcelable or just passing the object "id" and query it by viewmodel from database?



ps. this is my first question after one year use of stackoverflow and english is not mother language. please don't be too hard on me if am wrong at somewhere.



sample activity images







android android-room parcelable






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 12 at 8:17

























asked Nov 12 at 8:00









M.Emre YILMAZ

12




12







  • 1




    pass the row id and use any DAO method to get the details based on that id
    – pskink
    Nov 12 at 8:21












  • 1




    pass the row id and use any DAO method to get the details based on that id
    – pskink
    Nov 12 at 8:21







1




1




pass the row id and use any DAO method to get the details based on that id
– pskink
Nov 12 at 8:21




pass the row id and use any DAO method to get the details based on that id
– pskink
Nov 12 at 8:21












2 Answers
2






active

oldest

votes


















1














welcome to StackOverflow.




I couldn't decide for passing method of the object between these two activities. Which one is a better approach that passing the object by parcelable or just passing the object "id" and query it by viewmodel from database?




A big object should not be passed as parcelable. If your object is rather big, go with passing id.
If it is a small object, like containing just several Strings/primitives, you can pass it.






share|improve this answer




























    0














    You can use Event Bus to pass data between fragments, activities...: https://github.com/greenrobot/EventBus. It's quite ease to use.






    share|improve this answer




















    • This should be a comment !
      – Piyush
      Nov 12 at 8:05










    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53257947%2fefficient-way-of-passing-object-between-android-applications-with-database%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    welcome to StackOverflow.




    I couldn't decide for passing method of the object between these two activities. Which one is a better approach that passing the object by parcelable or just passing the object "id" and query it by viewmodel from database?




    A big object should not be passed as parcelable. If your object is rather big, go with passing id.
    If it is a small object, like containing just several Strings/primitives, you can pass it.






    share|improve this answer

























      1














      welcome to StackOverflow.




      I couldn't decide for passing method of the object between these two activities. Which one is a better approach that passing the object by parcelable or just passing the object "id" and query it by viewmodel from database?




      A big object should not be passed as parcelable. If your object is rather big, go with passing id.
      If it is a small object, like containing just several Strings/primitives, you can pass it.






      share|improve this answer























        1












        1








        1






        welcome to StackOverflow.




        I couldn't decide for passing method of the object between these two activities. Which one is a better approach that passing the object by parcelable or just passing the object "id" and query it by viewmodel from database?




        A big object should not be passed as parcelable. If your object is rather big, go with passing id.
        If it is a small object, like containing just several Strings/primitives, you can pass it.






        share|improve this answer












        welcome to StackOverflow.




        I couldn't decide for passing method of the object between these two activities. Which one is a better approach that passing the object by parcelable or just passing the object "id" and query it by viewmodel from database?




        A big object should not be passed as parcelable. If your object is rather big, go with passing id.
        If it is a small object, like containing just several Strings/primitives, you can pass it.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 12 at 8:19









        Deividas Strioga

        831316




        831316























            0














            You can use Event Bus to pass data between fragments, activities...: https://github.com/greenrobot/EventBus. It's quite ease to use.






            share|improve this answer




















            • This should be a comment !
              – Piyush
              Nov 12 at 8:05















            0














            You can use Event Bus to pass data between fragments, activities...: https://github.com/greenrobot/EventBus. It's quite ease to use.






            share|improve this answer




















            • This should be a comment !
              – Piyush
              Nov 12 at 8:05













            0












            0








            0






            You can use Event Bus to pass data between fragments, activities...: https://github.com/greenrobot/EventBus. It's quite ease to use.






            share|improve this answer












            You can use Event Bus to pass data between fragments, activities...: https://github.com/greenrobot/EventBus. It's quite ease to use.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 12 at 8:04









            Louis Solo

            1162




            1162











            • This should be a comment !
              – Piyush
              Nov 12 at 8:05
















            • This should be a comment !
              – Piyush
              Nov 12 at 8:05















            This should be a comment !
            – Piyush
            Nov 12 at 8:05




            This should be a comment !
            – Piyush
            Nov 12 at 8:05

















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53257947%2fefficient-way-of-passing-object-between-android-applications-with-database%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            這個網誌中的熱門文章

            Barbados

            How to read a connectionString WITH PROVIDER in .NET Core?

            Node.js Script on GitHub Pages or Amazon S3