What are the best practices for a lot of strings and other contents organized? [Android]
I want to make an android app which will contain a lot of chapters (around 100) and each chapters will have specific pictures, audio and descriptions. Later I want to add translations too. I'm a beginner and have no academic background till now. Can you please tell me how should I design the app? I'm thinking of implementing list view for the chapters list. Fragments to display information. What are the best practices if I want to keep the chapters with vast number of strings and other contents organized and display flawlessly?
android
add a comment |
I want to make an android app which will contain a lot of chapters (around 100) and each chapters will have specific pictures, audio and descriptions. Later I want to add translations too. I'm a beginner and have no academic background till now. Can you please tell me how should I design the app? I'm thinking of implementing list view for the chapters list. Fragments to display information. What are the best practices if I want to keep the chapters with vast number of strings and other contents organized and display flawlessly?
android
Welcome to SO. Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. Please read help center
– Ali
Nov 22 '18 at 11:34
Okay, Thank you for explaining. I'll come up with a more specific questions next time.
– sadat daniel
Nov 22 '18 at 11:39
how should I design the app? There are many websites available in google so find there. if you have any programmatic issue then please paste your answer hear
– Ali
Nov 22 '18 at 11:41
This is very broad and opinion based. You should go through some tutorials, build some apps for practice. That will give you a good idea.
– SanSolo
Nov 22 '18 at 11:41
Thank you for your suggestion @SanSolo. Of course I should gain some experiences too.
– sadat daniel
Nov 22 '18 at 11:48
add a comment |
I want to make an android app which will contain a lot of chapters (around 100) and each chapters will have specific pictures, audio and descriptions. Later I want to add translations too. I'm a beginner and have no academic background till now. Can you please tell me how should I design the app? I'm thinking of implementing list view for the chapters list. Fragments to display information. What are the best practices if I want to keep the chapters with vast number of strings and other contents organized and display flawlessly?
android
I want to make an android app which will contain a lot of chapters (around 100) and each chapters will have specific pictures, audio and descriptions. Later I want to add translations too. I'm a beginner and have no academic background till now. Can you please tell me how should I design the app? I'm thinking of implementing list view for the chapters list. Fragments to display information. What are the best practices if I want to keep the chapters with vast number of strings and other contents organized and display flawlessly?
android
android
asked Nov 22 '18 at 11:33
sadat danielsadat daniel
1
1
Welcome to SO. Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. Please read help center
– Ali
Nov 22 '18 at 11:34
Okay, Thank you for explaining. I'll come up with a more specific questions next time.
– sadat daniel
Nov 22 '18 at 11:39
how should I design the app? There are many websites available in google so find there. if you have any programmatic issue then please paste your answer hear
– Ali
Nov 22 '18 at 11:41
This is very broad and opinion based. You should go through some tutorials, build some apps for practice. That will give you a good idea.
– SanSolo
Nov 22 '18 at 11:41
Thank you for your suggestion @SanSolo. Of course I should gain some experiences too.
– sadat daniel
Nov 22 '18 at 11:48
add a comment |
Welcome to SO. Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. Please read help center
– Ali
Nov 22 '18 at 11:34
Okay, Thank you for explaining. I'll come up with a more specific questions next time.
– sadat daniel
Nov 22 '18 at 11:39
how should I design the app? There are many websites available in google so find there. if you have any programmatic issue then please paste your answer hear
– Ali
Nov 22 '18 at 11:41
This is very broad and opinion based. You should go through some tutorials, build some apps for practice. That will give you a good idea.
– SanSolo
Nov 22 '18 at 11:41
Thank you for your suggestion @SanSolo. Of course I should gain some experiences too.
– sadat daniel
Nov 22 '18 at 11:48
Welcome to SO. Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. Please read help center
– Ali
Nov 22 '18 at 11:34
Welcome to SO. Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. Please read help center
– Ali
Nov 22 '18 at 11:34
Okay, Thank you for explaining. I'll come up with a more specific questions next time.
– sadat daniel
Nov 22 '18 at 11:39
Okay, Thank you for explaining. I'll come up with a more specific questions next time.
– sadat daniel
Nov 22 '18 at 11:39
how should I design the app? There are many websites available in google so find there. if you have any programmatic issue then please paste your answer hear
– Ali
Nov 22 '18 at 11:41
how should I design the app? There are many websites available in google so find there. if you have any programmatic issue then please paste your answer hear
– Ali
Nov 22 '18 at 11:41
This is very broad and opinion based. You should go through some tutorials, build some apps for practice. That will give you a good idea.
– SanSolo
Nov 22 '18 at 11:41
This is very broad and opinion based. You should go through some tutorials, build some apps for practice. That will give you a good idea.
– SanSolo
Nov 22 '18 at 11:41
Thank you for your suggestion @SanSolo. Of course I should gain some experiences too.
– sadat daniel
Nov 22 '18 at 11:48
Thank you for your suggestion @SanSolo. Of course I should gain some experiences too.
– sadat daniel
Nov 22 '18 at 11:48
add a comment |
1 Answer
1
active
oldest
votes
Add all your strings to your_language.xml
, and then you can create other xml files (french.xml, english.xml...
) with translations, where you store strings with same names, but translated text, and depending on choosen language, they're going to be replaced. Keep strings.xml
to store strings just for app, like version, author name, or other stuff which you don't need to translate.
This is precisely what I needed to know! Thanks a lot.
– sadat daniel
Nov 22 '18 at 11:45
You're welcome :)
– SkypeDogg
Nov 22 '18 at 11:47
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%2f53430047%2fwhat-are-the-best-practices-for-a-lot-of-strings-and-other-contents-organized%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Add all your strings to your_language.xml
, and then you can create other xml files (french.xml, english.xml...
) with translations, where you store strings with same names, but translated text, and depending on choosen language, they're going to be replaced. Keep strings.xml
to store strings just for app, like version, author name, or other stuff which you don't need to translate.
This is precisely what I needed to know! Thanks a lot.
– sadat daniel
Nov 22 '18 at 11:45
You're welcome :)
– SkypeDogg
Nov 22 '18 at 11:47
add a comment |
Add all your strings to your_language.xml
, and then you can create other xml files (french.xml, english.xml...
) with translations, where you store strings with same names, but translated text, and depending on choosen language, they're going to be replaced. Keep strings.xml
to store strings just for app, like version, author name, or other stuff which you don't need to translate.
This is precisely what I needed to know! Thanks a lot.
– sadat daniel
Nov 22 '18 at 11:45
You're welcome :)
– SkypeDogg
Nov 22 '18 at 11:47
add a comment |
Add all your strings to your_language.xml
, and then you can create other xml files (french.xml, english.xml...
) with translations, where you store strings with same names, but translated text, and depending on choosen language, they're going to be replaced. Keep strings.xml
to store strings just for app, like version, author name, or other stuff which you don't need to translate.
Add all your strings to your_language.xml
, and then you can create other xml files (french.xml, english.xml...
) with translations, where you store strings with same names, but translated text, and depending on choosen language, they're going to be replaced. Keep strings.xml
to store strings just for app, like version, author name, or other stuff which you don't need to translate.
answered Nov 22 '18 at 11:40
SkypeDoggSkypeDogg
8911
8911
This is precisely what I needed to know! Thanks a lot.
– sadat daniel
Nov 22 '18 at 11:45
You're welcome :)
– SkypeDogg
Nov 22 '18 at 11:47
add a comment |
This is precisely what I needed to know! Thanks a lot.
– sadat daniel
Nov 22 '18 at 11:45
You're welcome :)
– SkypeDogg
Nov 22 '18 at 11:47
This is precisely what I needed to know! Thanks a lot.
– sadat daniel
Nov 22 '18 at 11:45
This is precisely what I needed to know! Thanks a lot.
– sadat daniel
Nov 22 '18 at 11:45
You're welcome :)
– SkypeDogg
Nov 22 '18 at 11:47
You're welcome :)
– SkypeDogg
Nov 22 '18 at 11:47
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.
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%2f53430047%2fwhat-are-the-best-practices-for-a-lot-of-strings-and-other-contents-organized%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
Welcome to SO. Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. Please read help center
– Ali
Nov 22 '18 at 11:34
Okay, Thank you for explaining. I'll come up with a more specific questions next time.
– sadat daniel
Nov 22 '18 at 11:39
how should I design the app? There are many websites available in google so find there. if you have any programmatic issue then please paste your answer hear
– Ali
Nov 22 '18 at 11:41
This is very broad and opinion based. You should go through some tutorials, build some apps for practice. That will give you a good idea.
– SanSolo
Nov 22 '18 at 11:41
Thank you for your suggestion @SanSolo. Of course I should gain some experiences too.
– sadat daniel
Nov 22 '18 at 11:48