English 中文(简体)
记忆友好: 在Xml或java级的观点?
原标题:Memory friendly : View in xml or java class?

I am starting with development in android apoplications, but not sure about the creation of views. Which one of the two is more preferable in terms of memory-consumption for creation of views : XML or Java Class ?

您能否建议,对于XML或Java语来说,采用哪一种方法更便于记忆?

最佳回答

最终, Java幕后。

两者都与从 Java或使用xml制造相同。

XML帮助我们迅速定制<代码> <>Views, 和 d; 图表。

Layout的骗子实际上奏效。 (例如:Here是优化记忆消耗的一个例证。)

问题回答

If you are just starting with the development and you are new to android..go with XML its easier to understand and experiment with.there are a lot of tutorials around.

Java classes are usually used to set view dynamically..so i would suggest start with XML and move to simple Java tutorials. with memory friendly part(i dint get what you are trying to say) if its about the load time or the CPU usage.its non the less same.

用于记忆-消费的XML 意见最好使用,但请您发表。 当你从服务器或从任何其他资源那里获得数据时,看法是动态的,然后你可以利用 Java来提出这些意见。





相关问题
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 ...

热门标签