WEB开发网
开发学院手机开发Android 开发 Android UI 优化 阅读

Android UI 优化

 2010-04-03 16:57:00 来源:WEB开发网   
核心提示:有一句古话:不论黑猫白猫,能抓到耗子就是好猫,Android UI 优化,这个也许在某些方面是有道理的,但对于我们追求精益求精的思想是背道而驰的,这个例子转载于 android developing blog在Android中最常用LinearLayout表示UI的框架,而且也是最直观和方便的方法,往往就是因为满足于一

有一句古话:不论黑猫白猫,能抓到耗子就是好猫。这个也许在某些方面是有道理的,但对于我们追求精益求精的思想是背道而驰的,往往就是因为满足于一个结果,而放弃探求更加优化的处理方法。

当关注应用程序或者游戏所达到的结果时,往往非常容易忽视一些优化的问题,例如内存优化,线程优化,Media优化和UI优化等等。不同的模块都存

在更为巧妙的方式来对待一般性问题,所以每当我们实现一个行为后,稍微多花一些时间来考虑目前所作的工作是否存在更为高效的解决办法。

这一次我们对常用的UI Layout优化说起,这个例子转载于 android developing blog

Android中最常用

LinearLayout

表示UI的框架,而且也是最直观和方便的方法。例如创建一个UI用于展现Item的基本内容。如图所示:

线框图:

直接可以通过LinearLayout快速的实现这个UI的排列:

?

View Code

XML xmlns:

android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"

android:layout_height="?android:attr/listPreferredItemHeight"

android:padding="6dip">

android:id="@+id/icon"

android:layout_width="wrap_content"

android:layout_height="fill_parent"

android:layout_marginRight="6dip"

android:src="@drawable/icon" />

android:orientation="vertical"

android:layout_width="0dip"

android:layout_weight="1"

android:layout_height="fill_parent">

android:layout_width="fill_parent"

android:layout_height="0dip"

android:layout_weight="1"

android:gravity="center_vertical"

android:text="My Application" />

android:layout_width="fill_parent"

1 2 3 4 5  下一页

Tags:Android UI 优化

编辑录入:coldstar [复制链接] [打 印]
赞助商链接