概述
释放双眼,带上耳机,听听看~!
在Android应用程序的开发中,有时需要限制水平和垂直屏幕的切换,今天这篇文章是技术狗小编为大家整理的Android应用借助LinearLayout实现垂直水平居中布局,希望对你学习这方面有所帮助。
首先说的是LinearLayout布局下的居中一般是这样的:
(注意:android:layout_width=”fill_parent” android:layout_height=”fill_parent” 属性中,若水平居中,至少在宽度上占全屏;若垂直居中,则在高度上占全屏)
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center|center_horizontal|center_vertical" >
// 上面gravity属性的参数:center为居中,center_horizontal为水平居中,center_vertical为垂直居中
android:id="@+id/Binding_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="关联新账户" />
要实现垂直水平居中,几个基本参数值得注意:
1、android:orientation=”vertical”表示该布局下的元素垂直排列;
2、android:layout_gravity=”center_horizontal”表示该布局在父布局里水平居中,此时其父布局必须拥有android:orientation=”vertical”属性;
3、android:layout_gravity=”center_vertical”表示该布局在父布局里垂直居中,此时其父布局必须应设置成android:orientation=”horizontal”属性(默认为该属性),且其父布局的高度应设置为android:layout_height=”fill_parent”属性;
4、android:gravity=”center_horizontal”表示该布局下的元素水平居中;
线性布局垂直水平居中布局文件实例:
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="center_horizontal"
>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="center_vertical"
>
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
android:layout_width="100dp"
android:layout_height="wrap_content"
android:gravity="right"
android:text="用户名" />
android:layout_width="300dp"
android:layout_height="wrap_content" />
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
android:layout_width="100dp"
android:layout_height="wrap_content"
android:gravity="right"
android:text="Email" />
android:layout_width="300dp"
android:layout_height="wrap_content" />
上文是技术狗小编解说的Android应用借助LinearLayout实现垂直水平居中布局,相信大家都熟悉了,还有不懂的问题,可以咨询技术狗小编哦。
最后
以上就是玩命招牌为你收集整理的android 组建水平居中,Android开发借助LinearLayout实现垂直水平居中布局的全部内容,希望文章能够帮你解决android 组建水平居中,Android开发借助LinearLayout实现垂直水平居中布局所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复