Efficient way of passing object between android applications with database
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
add a comment |
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
1
pass the rowid
and use any DAO method to get the details based on that id
– pskink
Nov 12 at 8:21
add a comment |
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
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
android android-room parcelable
edited Nov 12 at 8:17
asked Nov 12 at 8:00
M.Emre YILMAZ
12
12
1
pass the rowid
and use any DAO method to get the details based on that id
– pskink
Nov 12 at 8:21
add a comment |
1
pass the rowid
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
add a comment |
2 Answers
2
active
oldest
votes
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.
add a comment |
You can use Event Bus to pass data between fragments, activities...: https://github.com/greenrobot/EventBus. It's quite ease to use.
This should be a comment !
– Piyush
Nov 12 at 8:05
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered Nov 12 at 8:19
Deividas Strioga
831316
831316
add a comment |
add a comment |
You can use Event Bus to pass data between fragments, activities...: https://github.com/greenrobot/EventBus. It's quite ease to use.
This should be a comment !
– Piyush
Nov 12 at 8:05
add a comment |
You can use Event Bus to pass data between fragments, activities...: https://github.com/greenrobot/EventBus. It's quite ease to use.
This should be a comment !
– Piyush
Nov 12 at 8:05
add a comment |
You can use Event Bus to pass data between fragments, activities...: https://github.com/greenrobot/EventBus. It's quite ease to use.
You can use Event Bus to pass data between fragments, activities...: https://github.com/greenrobot/EventBus. It's quite ease to use.
answered Nov 12 at 8:04
Louis Solo
1162
1162
This should be a comment !
– Piyush
Nov 12 at 8:05
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
1
pass the row
id
and use any DAO method to get the details based on that id– pskink
Nov 12 at 8:21