Application in kotlin enumWhat does the [Flags] Enum Attribute mean in C#?Cast int to enum in C#How can I represent an 'Enum' in Python?Create Generic method constraining T to an EnumHow do I enumerate an enum in C#?What is the preferred syntax for defining enums in JavaScript?How to get an enum value from a string value in Java?Get int value from enum in C#How to loop through all enum values in C#?Comparing Java enum members: == or equals()?
How were Martello towers supposed to work?
How to properly say "bail on somebody" in German?
Integer Lists of Noah
How can I effectively communicate to recruiters that a phone call is not possible?
QGIS Zanzibar how to crop?
Did the Vulgar Latin verb "toccare" exist?
Is the genetic term "polycistronic" still used in modern biology?
How to ask for a LinkedIn endorsement?
How would my creatures handle groups without a strong concept of numbers?
How to convert a file with several spaces into a tab-delimited file?
Why isn't pressure filtration popular compared to vacuum filtration?
Why are Hobbits so fond of mushrooms?
Does Lufthansa weigh your carry on luggage?
Why doesn't sea level show seasonality?
C program to parse source code of another language
Would dual wielding daggers be a viable choice for a covert bodyguard?
If a non-friend comes across my Steam Wishlist, how easily can he gift me one of the games?
What's the minimum number of sensors for a hobby GPS waypoint-following UAV?
Should disabled buttons give feedback when clicked?
What is this triple-transistor arrangement called?
Why was hardware diversification an asset for the IBM PC ecosystem?
Does throwing a penny at a train stop the train?
How did the hit man miss?
Cracking the Coding Interview — 1.5 One Away
Application in kotlin enum
What does the [Flags] Enum Attribute mean in C#?Cast int to enum in C#How can I represent an 'Enum' in Python?Create Generic method constraining T to an EnumHow do I enumerate an enum in C#?What is the preferred syntax for defining enums in JavaScript?How to get an enum value from a string value in Java?Get int value from enum in C#How to loop through all enum values in C#?Comparing Java enum members: == or equals()?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Is it safe if I use application in a kotlin enum
? Like this:
enum class Labels(title: String, type: Int)
PERFORM(App.application.getString(R.string.perform), 0),
DUTY(App.application.getString(R.string.duty), 1),
... ...
android kotlin enums android-application-class
add a comment |
Is it safe if I use application in a kotlin enum
? Like this:
enum class Labels(title: String, type: Int)
PERFORM(App.application.getString(R.string.perform), 0),
DUTY(App.application.getString(R.string.duty), 1),
... ...
android kotlin enums android-application-class
As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time theenum
class is first loaded.
– Robby Cornelissen
Mar 26 at 2:30
add a comment |
Is it safe if I use application in a kotlin enum
? Like this:
enum class Labels(title: String, type: Int)
PERFORM(App.application.getString(R.string.perform), 0),
DUTY(App.application.getString(R.string.duty), 1),
... ...
android kotlin enums android-application-class
Is it safe if I use application in a kotlin enum
? Like this:
enum class Labels(title: String, type: Int)
PERFORM(App.application.getString(R.string.perform), 0),
DUTY(App.application.getString(R.string.duty), 1),
... ...
android kotlin enums android-application-class
android kotlin enums android-application-class
edited Mar 26 at 6:28
Sergey
4,9042 gold badges22 silver badges35 bronze badges
4,9042 gold badges22 silver badges35 bronze badges
asked Mar 26 at 2:28
liumingyiliumingyi
15 bronze badges
15 bronze badges
As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time theenum
class is first loaded.
– Robby Cornelissen
Mar 26 at 2:30
add a comment |
As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time theenum
class is first loaded.
– Robby Cornelissen
Mar 26 at 2:30
As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time the
enum
class is first loaded.– Robby Cornelissen
Mar 26 at 2:30
As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time the
enum
class is first loaded.– Robby Cornelissen
Mar 26 at 2:30
add a comment |
1 Answer
1
active
oldest
votes
I wouldn't use App
class in the enum
. Instead I would pass only resource id, because we can't rely that App
class is instantiated at the moment of enum class is first loaded:
enum class Labels(val titleResId: Int, val type: Int)
PERFORM(R.string.perform, 0),
DUTY(R.string.duty, 1),
... ...
And later we can use it, for example in Activity
, like this:
textView.setText(Labels.PERFORM.titleResId)
Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in
– liumingyi
Mar 27 at 5:02
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%2f55349009%2fapplication-in-kotlin-enum%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
I wouldn't use App
class in the enum
. Instead I would pass only resource id, because we can't rely that App
class is instantiated at the moment of enum class is first loaded:
enum class Labels(val titleResId: Int, val type: Int)
PERFORM(R.string.perform, 0),
DUTY(R.string.duty, 1),
... ...
And later we can use it, for example in Activity
, like this:
textView.setText(Labels.PERFORM.titleResId)
Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in
– liumingyi
Mar 27 at 5:02
add a comment |
I wouldn't use App
class in the enum
. Instead I would pass only resource id, because we can't rely that App
class is instantiated at the moment of enum class is first loaded:
enum class Labels(val titleResId: Int, val type: Int)
PERFORM(R.string.perform, 0),
DUTY(R.string.duty, 1),
... ...
And later we can use it, for example in Activity
, like this:
textView.setText(Labels.PERFORM.titleResId)
Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in
– liumingyi
Mar 27 at 5:02
add a comment |
I wouldn't use App
class in the enum
. Instead I would pass only resource id, because we can't rely that App
class is instantiated at the moment of enum class is first loaded:
enum class Labels(val titleResId: Int, val type: Int)
PERFORM(R.string.perform, 0),
DUTY(R.string.duty, 1),
... ...
And later we can use it, for example in Activity
, like this:
textView.setText(Labels.PERFORM.titleResId)
I wouldn't use App
class in the enum
. Instead I would pass only resource id, because we can't rely that App
class is instantiated at the moment of enum class is first loaded:
enum class Labels(val titleResId: Int, val type: Int)
PERFORM(R.string.perform, 0),
DUTY(R.string.duty, 1),
... ...
And later we can use it, for example in Activity
, like this:
textView.setText(Labels.PERFORM.titleResId)
answered Mar 26 at 6:25
SergeySergey
4,9042 gold badges22 silver badges35 bronze badges
4,9042 gold badges22 silver badges35 bronze badges
Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in
– liumingyi
Mar 27 at 5:02
add a comment |
Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in
– liumingyi
Mar 27 at 5:02
Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in
– liumingyi
Mar 27 at 5:02
Thanks a lot for your response,I'm going to revise my code. And , someone told me, enum is a static field, so i should not put context in
– liumingyi
Mar 27 at 5:02
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
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%2f55349009%2fapplication-in-kotlin-enum%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
As far as I can tell, the only thing you need to worry about is whether those values can be retrieved at the time the
enum
class is first loaded.– Robby Cornelissen
Mar 26 at 2:30