我想在屏幕中央放置一个布局。
Answers:
步骤1:将您想要的所有内容环绕在全屏屏幕上RelativeLayout
。
步骤#2:为该子视图(您要在中间居中放置的视图RelativeLayout
)android:layout_centerInParent="true"
赋予属性。
android:layout_centerInParent="true"
子视图,而不是RelativeLayout
。android:layout_*
属性会影响视图在其父视图中的位置和大小,而不影响视图的子视图在其中的位置和大小。
您可以使用XML属性android:layout_gravity“将居中应用于任何视图,包括布局。您可能希望为其赋予值” center“。
您可以在此处找到此选项可能值的参考:http : //developer.android.com/reference/android/widget/LinearLayout.LayoutParams.html#attr_android : layout_gravity
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center">
<ProgressBar
android:id="@+id/ProgressBar01"
android:layout_centerInParent="true"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:layout_height="wrap_content"></ProgressBar>
<TextView
android:layout_below="@id/ProgressBar01"
android:text="@string/please_wait_authenticating"
android:id="@+id/txtText"
android:paddingTop="30px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
</RelativeLayout>
我能够使用
android:layout_centerHorizontal="true"
和
android:layout_centerVertical="true"
参数。
RelativeLayout
。
如果要居中放置一个视图,请使用此视图。在这种情况下,TextView必须是XML中的最低视图,因为它的layout_height是match_parent。
<TextView
android:id="@+id/tv_to_be_centered"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:gravity="center"
android:text="Some text"
/>
Layout
widges做延伸ViewGroup
...但是ViewGroup
延伸查看。所以Layout
是一个 ViewGroup
,并且ViewGroup
是 View
android:layout_gravity
属性。
看来现在Android中的趋势是使用约束布局。尽管使用a来使视图居中非常简单RelativeLayout
(如其他答案所示),ConstraintLayout
但RelativeLayout
对于更复杂的布局而言,的功能要比强大。因此,值得学习如何做。
要使视图居中,只需将手柄拖到父对象的所有四个侧面即可。
它将适用于该代码,有时需要两个属性
android:layout_gravity="center"
android:layout_centerHorizontal="true"
将android:layout_centerInParent =“ true”添加到要在RelativeLayout中居中的元素
使用ConstraintLayout。这是一个根据父屏幕的宽度和高度将视图居中的示例:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#FF00FF"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHeight_percent=".6"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent=".4"></LinearLayout>
</android.support.constraint.ConstraintLayout>
您可能需要更改gradle以获得ConstraintLayout的最新版本:
dependencies {
...
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
}