Android入门扫盲
2011-01-11 07:05:07 来源:WEB开发网主要把界面布局类:LinearLayout和FrameLayout弄懂简单的开发就够了,再深入一点就要把ViewManager及其子类弄清楚了。
其中,LinearLayout垂直和水平两种,他们之间可以相互嵌套,嵌套时候要注意高和宽的属性,如。
< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.srk.study"
android:id="@+id/screen" android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background" android:focusable="true"
android:orientation="vertical">
< LinearLayout android:layout_width="fill_parent"
android:layout_height="65dip"
android:background="@drawable/background"
android:orientation="horizontal">
< com.srk.study.model.TitleView android:id="@+id/titleView"
android:layout_width="280dip" android:layout_height="65dip"
android:paddingLeft="5dip" android:paddingTop="10dip"
app:focusBgColor=@drawable/whiteColor app:titleColor=@drawable/blackColor
app:titleSize="15dip" />
< com.srk.study.model.ConnectView android:id="@+id/connectView"
android:layout_height="65dip"
android:layout_width="40dip" app.startX="280dip" />
< /LinearLayout>
< ListView android:id="@+id/bodyListView" android:layout_width="fill_parent"
android:paddingTop="3dip" android:layout_height="wrap_content"
android:layout_weight="1.0"
android:persistentDrawingCache="animation|scrolling"
android:scrollbars="vertical" android:focusable="true"
android:scrollbarSize="12dip" />
< /LinearLayout>
以上的配置文件是我学习过程的小练习,在这里秀一下,哈哈,记得在去年刚毕业的时候,特别爱学习,什么都想弄弄,在去年一年的时光中,每天都过得很充实,也许那就是年轻的标志吧,扯远了。今天就说这么多,有空分享点源代码出来。
更多精彩
赞助商链接