android设置水平布局,Android开发借助LinearLayout实现垂直水平居中布局

释放双眼,带上耳机,听听看~!

在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="关联新账户" />

要实现垂直水平居中,几个基本参数值得注意࿱

你可能感兴趣的:(android设置水平布局)