English 中文(简体)
Android: 利用@+id性能是否明智?
原标题:Android: Are there any benefits to using @id over @+id performance wise?
  • 时间:2010-11-29 21:37:30
  •  标签:
  • android
  • xsd

我知道,“+id”中的“+”表示汇编者会向(R.id.?)资源补充。 然而,人们想知道,如果不把“+”搁置起来,能否获得业绩效益?

或许,例如在处理复杂的清单观点时,排出物?

最佳回答

这并不是差别。 如果您使用<代码>android:id,则始终应为@+id(我想)。 这就是说,你重新指定了这个身份。 否则,正如Rraybritton所说,你重新推荐了身份证。

但是,甚至在汇编时间之前也会产生R。 不仅会减少收益,而且会及时汇编,而且不会在时间上这样做。

问题回答

“+”是指在R名单上添加,而没有你重新提及已经存在的“国际调查”要素,即“+id/!” @id/

没有任何业绩差异。 对身份证而言,不使用+的唯一原因是,如果你明确宣布身份证,并想提及该身份证,则确保提及该身份证。 例如,如果你不使用+,在你的国际发展名称上有打字,那么你就会发现一个编辑错误,同时将产生一个新条目。

通过使用@+id,你增加了对R的提及,使用@id,你将重复在生成的R类中已经存在的提及。 例如,可以向您的活动提供信息,说明如何在布局中找到具体植被,因为在使用清单操作的习惯布局时就是这种情况。 然后,你将名单上的“id/android”号:清单预先界定。 Same与TabHost和TabWidget。

其余部分没有业绩差别,我想......





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签