“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

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현