“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;









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?










share|improve this question






























    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?










    share|improve this question


























      0












      0








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 21:05









      ZorganZorgan

      1,2062 gold badges23 silver badges64 bronze badges




      1,2062 gold badges23 silver badges64 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          1
















          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.






          share|improve this answer

























          • 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












          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
          );



          );














          draft saved

          draft discarded
















          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









          1
















          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.






          share|improve this answer

























          • 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















          1
















          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.






          share|improve this answer

























          • 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













          1














          1










          1









          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.






          share|improve this answer













          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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 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

















          • 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
















          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


















          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript