android:layout_gravity 和 android:gravity 的區別
gravity 這個英文單詞是重心的意思,在這裡就表示停靠位置的意思。
android:layout_gravity 和 android:gravity 的區別
從名字上可以看到,android:gravity是對元素本身說的,元素本身的文字顯示在什麼地方靠著換個屬性設定,不過不設定預設是在左側的。
android:layout_gravity是相對與它的父元素說的,說明元素顯示在父元素的什麼位置。
比如說button: android:layout_gravity 表示按鈕在介面上的位置。 android:gravity表示button上的字在button上的位置。
可選值
這兩個屬性可選的值有:top、bottom、left、right、center_vertical、fill_vertical、center_horizontal、fill_horizontal、center、fill、clip_vertical。
而且這些屬性是可以多選的,用“|”分開。
預設這個的值是:Gravity.LEFT
對這些屬性的描述:
出自:
http://androidmirror.com/guide/topics/resources/drawable-resource.html
http://android.toolib.net/reference/android/graphics/drawable/ClipDrawable.html
Value | Description |
top |
Put the object at the top of its container, not changing its size. 將物件放在其容器的頂部,不改變其大小. |
bottom |
Put the object at the bottom of its container, not changing its size. 將物件放在其容器的底部,不改變其大小. |
left |
Put the object at the left edge of its container, not changing its size. 將物件放在其容器的左側,不改變其大小. |
right |
Put the object at the right edge of its container, not changing its size. 將物件放在其容器的右側,不改變其大小. |
center_vertical |
Place object in the vertical center of its container, not changing its size. 將物件縱向居中,不改變其大小. 垂直對齊方式:垂直方向上居中對齊。 |
fill_vertical |
Grow the vertical size of the object if needed so it completely fills its container. 必要的時候增加物件的縱向大小,以完全充滿其容器. 垂直方向填充 |
center_horizontal |
Place object in the horizontal center of its container, not changing its size. 將物件橫向居中,不改變其大小. 水平對齊方式:水平方向上居中對齊 |
fill_horizontal |
Grow the horizontal size of the object if needed so it completely fills its container. 必要的時候增加物件的橫向大小,以完全充滿其容器. 水平方向填充 |
center |
Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. 將物件橫縱居中,不改變其大小. |
fill |
Grow the horizontal and vertical size of the object if needed so it completely fills its container. This is the default. 必要的時候增加物件的橫縱向大小,以完全充滿其容器. |
clip_vertical |
Additional option that can be set to have the top and/or bottom edges of the child clipped to its container's bounds. The clip is based on the vertical gravity: a top gravity clips the bottom edge, a bottom gravity clips the top edge, and neither clips both
edges. 附加選項,用於按照容器的邊來剪下物件的頂部和/或底部的內容. 剪下基於其縱向對齊設定:頂部對齊時,剪下底部;底部對齊時剪下頂部;除此之外剪下頂部和底部. 垂直方向裁剪 |
clip_horizontal |
Additional option that can be set to have the left and/or right edges of the child clipped to its container's bounds. The clip is based on the horizontal gravity: a left gravity clips the right edge, a right gravity clips the left edge, and neither clips both
edges. 附加選項,用於按照容器的邊來剪下物件的左側和/或右側的內容. 剪下基於其橫向對齊設定:左側對齊時,剪下右側;右側對齊時剪下左側;除此之外剪下左側和右側. 水平方向裁剪 |
簡單記憶 : horizontal 都是操作的水平方向,即橫向, vertical 都是炒作的垂直方向,即縱向。
對於LinearLayout何時生效的問題
參看:也談layout_gravity和gravity
http://www.lephone.net/viewthread.php?tid=325
對於 LinearLayout
當 android:orientation="vertical" 時, 只有水平方向的設定才起作用,垂直方向的設定不起作用。即:left,right,center_horizontal 是生效的。
當 android:orientation="horizontal" 時, 只有垂直方向的設定才起作用,水平方向的設定不起作用。即:top,bottom,center_vertical 是生效的。
相關文章
- 安卓中gravity和layout_gravity的區別安卓
- Android之android:theme設定在Application 和 Activity的區別AndroidAPP
- Android核心和Linux核心的區別AndroidLinux
- Android之Intent的setClass和setClassName的區別AndroidIntent
- Java開發和Android開發的區別JavaAndroid
- Android 開發中 getContext 和 getActivity的區別AndroidContext
- Android程式(Processes)和任務(tasks)的區別Android
- Android之drawable和mipmap目錄區別Android
- Android Studio之Gradle和Gradle外掛的區別AndroidGradle
- Android之getApplication()、getApplicationContext的區別AndroidAPPContext
- Android之工程目錄lib和libs區別Android
- Android主專案和Module中R類的區別Android
- Android——FragmentPagerAdapter與FragmentStatePagerAdapter區別AndroidFragmentAPT
- Android關於buildToolVersion與CompileSdkVersion的區別AndroidUICompile
- Android- String、StringBuffer、StringBuilder區別AndroidUI
- APP測試中IOS和Android的區別,有哪些注意點?APPiOSAndroid
- Android中drawable和mipmap到底有什麼區別Android
- 淺談iOS和Android後臺實時訊息推送的原理和區別iOSAndroid
- Android中asset資料夾和raw資料夾區別Android
- Android sdk版本號和API級別的對照表AndroidAPI
- Android wifi上網跟4G上網的區別AndroidWiFi
- Android開發之--visibility屬性VISIBLE、INVISIBLE、GONE的區別AndroidGo
- android之support-v4、v7、v13的區別Android
- Android LeakCanary的使用和原理Android
- Android RecyclerView的ViewHolder和AdaAndroidView
- ../和./和/的區別
- LinkedList和ArrayList的區別、Vector和ArrayList的區別
- http和https的區別/get和post的區別HTTP
- 使用Android系統測試和iOS系統測試,到底有什麼區別?AndroidiOS
- Android逆向之路---Android逆向之路---讓你的微信地區來自火星Android
- Android逆向之路—Android逆向之路—讓你的微信地區來自火星Android
- ||和??的區別
- /*和/**的區別
- Basket Fall 2-Gravity!
- Android中的LruCache的原理和使用Android
- 區塊鏈錢包-android篇區塊鏈Android
- Android之Notification和RemoteviewAndroidREMView
- Android SpannableString和SpannableStringBuilder教程AndroidUI
- makefile =和:=的區別