我正在研究一個簡單的android應用程序,並且我需要對齊一些特定位置的視圖,但沒有使用填充或常量整數值的大小,我想要那麼使用重力屬性,任何人都可以告訴我重力屬性是什麼,android:gravity和android:layout_gravity屬性有什麼區別。android:gravity和android有什麼區別:layout_gravity
並提前致謝。
我正在研究一個簡單的android應用程序,並且我需要對齊一些特定位置的視圖,但沒有使用填充或常量整數值的大小,我想要那麼使用重力屬性,任何人都可以告訴我重力屬性是什麼,android:gravity和android:layout_gravity屬性有什麼區別。android:gravity和android有什麼區別:layout_gravity
並提前致謝。
android:gravity
設置其用在View
的內容的嚴重性。
android:layout_gravity
在其父項中設置View
或Layout
的重力。
謝謝你。這很有用。 – 2013-04-10 08:21:10
android:gravity sets the gravity of the content of the View its used on.
android:layout_gravity sets the gravity of the View or Layout in its parent.
比重:將指定到該視圖的內容將被下了車,這意味着如果你有一個TextView
和它的參數不wrap_content
兩個維度,然後Gravity
將確定邊境本文會觸摸。
Layout_Gravitiy:裏面它的父佈局,這意味着如果你Layout是越大這裏面的視圖將確定此視圖將觸及此佈局的邊界,這將指定視圖的位置。
http://thinkandroid.wordpress.com/2010/01/14/how-to-position-views-properly-in-layouts/ – Nermeen 2013-04-10 07:41:56
其實你應該使用搜索功能。 如果你這樣做,你會最終與答案 http://stackoverflow.com/a/3482757/312312 – Lefteris 2013-04-10 07:42:35