首先還是先把布局文件給大家貼出來
R.layout.frame.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:paddingTop="1pt"
- android:paddingLeft="1pt"
- android:paddingRight="10pt"
- android:orientation="horizontal" >
- <TextView
- android:id ="@+id/appname"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textSize="15pt"
- />
- </LinearLayout>
這是activity采用的布局文件,現在解釋一下中間幾個屬性的含義
android:orientation 指定LineatLayout 是橫向的還是縱向的 "vertical"縱向
android:drawSelectorOnTop 指定 容器是否畫在內容上方
選擇"false"
選擇"true"