“The plus symbol indicates that this should be created as a new ID” - as opposed to what?How to make an Android Spinner with initial text “Select One”?Fling gesture detection on grid layoutReference one string from another string in strings.xml?Can the Android Layout folder contain subfolders?Difference between “@id/” and “@+id/” in AndroidSet selected item of spinner programmaticallyMipmap drawables for iconsMipmaps vs. drawable foldersError retrieving parent for item: No resource found that matches the given name after upgrading to AppCompat v23New resource id declaration without the plus sign
Why would they pick a gamma distribution here?
Is the text of all UK treaties and laws public?
Python Bingo game that stores card in a dictionary
Why has Donald Trump's popularity remained so stable over a rather long period of time?
Looking for PC graphics demo software from the early 90s called "Unreal"
What are the rules for punctuating a conversation?
Describing the taste of food
How to make a gift without seeming creepy?
How acceptable is an ellipsis "..." in formal mathematics?
how do you value what your leisure time is worth?
Rat proofing compost bin but allowing worms in
Should I be able to see patterns in a HS256 encoded JWT?
Why didn't Snape ask Dumbledore why he let "Moody" search his office?
What if you can't publish in very high impact journal or top conference during your PhD?
I am confused with the word order when putting a sentence into passé composé with reflexive verbs
Prefill webform with civicrm activity data
What is /dev/null and why can't I use hx on it?
Low-magic medieval fantasy clothes that allow the wearer to grow?
Had there been instances of national states banning harmful imports before the mid-19th C Opium Wars?
Should I reveal productivity tricks to peers, or keep them to myself in order to be more productive than the others?
Meaning/translation of title "The Light Fantastic" By Terry Pratchett
Scalar `new T` vs array `new T[1]`
Can I remake a game I don't own any copyright to?
How are steel imports supposed to threaten US national security?
“The plus symbol indicates that this should be created as a new ID” - as opposed to what?
How to make an Android Spinner with initial text “Select One”?Fling gesture detection on grid layoutReference one string from another string in strings.xml?Can the Android Layout folder contain subfolders?Difference between “@id/” and “@+id/” in AndroidSet selected item of spinner programmaticallyMipmap drawables for iconsMipmaps vs. drawable foldersError retrieving parent for item: No resource found that matches the given name after upgrading to AppCompat v23New resource id declaration without the plus sign
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
When Android describes android:id
as:
Resource ID. A unique resource ID for this drawable. To create a new resource ID for this item, use the form: "@+id/name". The plus symbol indicates that this should be created as a new ID.
When would id
not be created as a new id
? Shouldn't that be implied?
android xml
add a comment
|
When Android describes android:id
as:
Resource ID. A unique resource ID for this drawable. To create a new resource ID for this item, use the form: "@+id/name". The plus symbol indicates that this should be created as a new ID.
When would id
not be created as a new id
? Shouldn't that be implied?
android xml
add a comment
|
When Android describes android:id
as:
Resource ID. A unique resource ID for this drawable. To create a new resource ID for this item, use the form: "@+id/name". The plus symbol indicates that this should be created as a new ID.
When would id
not be created as a new id
? Shouldn't that be implied?
android xml
When Android describes android:id
as:
Resource ID. A unique resource ID for this drawable. To create a new resource ID for this item, use the form: "@+id/name". The plus symbol indicates that this should be created as a new ID.
When would id
not be created as a new id
? Shouldn't that be implied?
android xml
android xml
asked Mar 28 at 21:05
ZorganZorgan
1,2062 gold badges23 silver badges64 bronze badges
1,2062 gold badges23 silver badges64 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
Views in a layout file can reference other views. This happens frequently when using RelativeLayout or ConstraintLayout which needs explicit relationships to be formed between its children.
e.g.
<Button android:id="@+id/progress" />
<Button
android:id="@+id/next"
app:layout_constraintTop_toBottomOf="@id/progress" />
When you specify a reference to another view, you omit the +
because we're not creating the ID, but referencing an existing one.
But the reference is implied because it's not in theid
attribute. If it is in the id attribute creating a new id should be implied?
– Zorgan
Mar 28 at 21:39
Ah, that's a good point. Technically you can use the+
syntax to create IDs outside of the ID field, so maybe the SDK authors felt it was good for flexibility and consistency. Though I can't think of any time you would need to create an ID but couldn't use theid
property itself 🤷♂️
– Damien Diehl
Mar 28 at 22:01
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/4.0/"u003ecc by-sa 4.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%2f55406830%2fthe-plus-symbol-indicates-that-this-should-be-created-as-a-new-id-as-opposed%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
Views in a layout file can reference other views. This happens frequently when using RelativeLayout or ConstraintLayout which needs explicit relationships to be formed between its children.
e.g.
<Button android:id="@+id/progress" />
<Button
android:id="@+id/next"
app:layout_constraintTop_toBottomOf="@id/progress" />
When you specify a reference to another view, you omit the +
because we're not creating the ID, but referencing an existing one.
But the reference is implied because it's not in theid
attribute. If it is in the id attribute creating a new id should be implied?
– Zorgan
Mar 28 at 21:39
Ah, that's a good point. Technically you can use the+
syntax to create IDs outside of the ID field, so maybe the SDK authors felt it was good for flexibility and consistency. Though I can't think of any time you would need to create an ID but couldn't use theid
property itself 🤷♂️
– Damien Diehl
Mar 28 at 22:01
add a comment
|
Views in a layout file can reference other views. This happens frequently when using RelativeLayout or ConstraintLayout which needs explicit relationships to be formed between its children.
e.g.
<Button android:id="@+id/progress" />
<Button
android:id="@+id/next"
app:layout_constraintTop_toBottomOf="@id/progress" />
When you specify a reference to another view, you omit the +
because we're not creating the ID, but referencing an existing one.
But the reference is implied because it's not in theid
attribute. If it is in the id attribute creating a new id should be implied?
– Zorgan
Mar 28 at 21:39
Ah, that's a good point. Technically you can use the+
syntax to create IDs outside of the ID field, so maybe the SDK authors felt it was good for flexibility and consistency. Though I can't think of any time you would need to create an ID but couldn't use theid
property itself 🤷♂️
– Damien Diehl
Mar 28 at 22:01
add a comment
|
Views in a layout file can reference other views. This happens frequently when using RelativeLayout or ConstraintLayout which needs explicit relationships to be formed between its children.
e.g.
<Button android:id="@+id/progress" />
<Button
android:id="@+id/next"
app:layout_constraintTop_toBottomOf="@id/progress" />
When you specify a reference to another view, you omit the +
because we're not creating the ID, but referencing an existing one.
Views in a layout file can reference other views. This happens frequently when using RelativeLayout or ConstraintLayout which needs explicit relationships to be formed between its children.
e.g.
<Button android:id="@+id/progress" />
<Button
android:id="@+id/next"
app:layout_constraintTop_toBottomOf="@id/progress" />
When you specify a reference to another view, you omit the +
because we're not creating the ID, but referencing an existing one.
answered Mar 28 at 21:35
Damien DiehlDamien Diehl
3214 silver badges12 bronze badges
3214 silver badges12 bronze badges
But the reference is implied because it's not in theid
attribute. If it is in the id attribute creating a new id should be implied?
– Zorgan
Mar 28 at 21:39
Ah, that's a good point. Technically you can use the+
syntax to create IDs outside of the ID field, so maybe the SDK authors felt it was good for flexibility and consistency. Though I can't think of any time you would need to create an ID but couldn't use theid
property itself 🤷♂️
– Damien Diehl
Mar 28 at 22:01
add a comment
|
But the reference is implied because it's not in theid
attribute. If it is in the id attribute creating a new id should be implied?
– Zorgan
Mar 28 at 21:39
Ah, that's a good point. Technically you can use the+
syntax to create IDs outside of the ID field, so maybe the SDK authors felt it was good for flexibility and consistency. Though I can't think of any time you would need to create an ID but couldn't use theid
property itself 🤷♂️
– Damien Diehl
Mar 28 at 22:01
But the reference is implied because it's not in the
id
attribute. If it is in the id attribute creating a new id should be implied?– Zorgan
Mar 28 at 21:39
But the reference is implied because it's not in the
id
attribute. If it is in the id attribute creating a new id should be implied?– Zorgan
Mar 28 at 21:39
Ah, that's a good point. Technically you can use the
+
syntax to create IDs outside of the ID field, so maybe the SDK authors felt it was good for flexibility and consistency. Though I can't think of any time you would need to create an ID but couldn't use the id
property itself 🤷♂️– Damien Diehl
Mar 28 at 22:01
Ah, that's a good point. Technically you can use the
+
syntax to create IDs outside of the ID field, so maybe the SDK authors felt it was good for flexibility and consistency. Though I can't think of any time you would need to create an ID but couldn't use the id
property itself 🤷♂️– Damien Diehl
Mar 28 at 22:01
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%2f55406830%2fthe-plus-symbol-indicates-that-this-should-be-created-as-a-new-id-as-opposed%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