先明確幾個概念的區別:
padding margin:都是邊距的含義,關鍵問題得明白是什麼相對什麼的邊距
padding:是控制項的內容相對控制項的邊緣的邊距.
margin :是控制項邊緣相對父空間的邊距
android:gravity是對該view 內容的限定.
比如一個button 上面的text. 你可以設定該text 在view的靠左,靠右等位置.該屬性就幹了這個.
android:layout_gravity 是用來設定該view中的子view相對於父view的位置.
比如一個button 在linearlayout裡,你想把該button放在靠左,靠右等位置就可以在linearlayout中通過該屬性設定
XML
布局檔案
<?xml version="1.0" encoding="utf-8"?><br /><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"<br />android:orientation="horizontal"<br />android:layout_width="fill_parent"<br />android:layout_height="wrap_content"<br />android:gravity="center_vertical"></p><p><ImageView android:id="@+id/ivLogo"<br />android:layout_width="50dp"<br />android:layout_height="50dp"<br />android:src="@drawable/icon"<br />android:paddingLeft="5dp" /></p><p><RelativeLayout android:id="@+id/rl_name"<br />android:layout_width="wrap_content"<br />android:layout_height="wrap_content"<br />android:gravity="right"<br />android:padding="10dp"></p><p><TextView android:id="@+id/tvApplicationName"<br />android:layout_width="wrap_content"<br />android:layout_height="wrap_content"<br />android:textSize="16dp" /><br /></RelativeLayout></p><p><RelativeLayout android:id="@+id/rl_score"<br />android:layout_width="fill_parent"<br />android:layout_height="wrap_content"<br />android:gravity="right"<br />android:padding="10dp"></p><p><TextView android:id="@+id/tvRating"<br />android:layout_width="wrap_content"<br />android:layout_height="wrap_content"<br />android:text="5.0" /></p><p><RatingBar android:id="@+id/ratingbar"<br />android:layout_width="wrap_content"<br />android:layout_height="wrap_content"<br />android:numStars="5"<br />style="?android:attr/ratingBarStyleSmall"<br />android:layout_below="@id/tvRating" /><br /></RelativeLayout></p><p></LinearLayout><br />
上面布局檔案的
上面的布局檔案是一個ListView中的list_item布局,在一個ListView中顯示所有的APK資源,每個資源項顯示表徵圖,名稱及評分。
在listItem的最外層LinearLayout中加android:gravity="center_vertical",設定內容垂直置中顯示。
在id為rl_score的RelativeLayout中設定android:layout_width="fill_parent"來填充剩餘空間;
android:gravity="right"設定內容相對於rl_score靠右對齊;
android:padding="10dp"設定RelativeLayout中的內容相對RelativeLayout的邊緣的邊距為10dp。
這個布局雖然簡單,但卻是經常用到的。