我知道我们可以为android设置以下值:gravity和android:layout_gravity财产:

居中中心_垂直center_horizontal等。

但我对这两者都感到困惑。

android:gravity和android:layout_gravity的用法有什么区别?


当前回答

重力——应用于其自身的视图。

布局重力---应用于与其父级相关的视图。

其他回答

如果我们想设置视图中内容的重力,那么我们将使用“android:gravity”,如果我们想在父视图中设置此视图(作为一个整体)的重力,则我们将使用”android:layout_gravity“。

我在Sandip的博客上看到了一些我差点错过的东西,解决了我的问题。他说layout_gravity不适用于LinearLayout。

如果你使用的是LinearLayout,而重力设置让你发疯(像我一样),那么就切换到其他设置。

我实际上切换到了RelativeLayout,然后在2个包含的TextView上使用layout_alignParentLeft和layout_aignParentRight,使它们在一行上向左和向右移动。

简短回答:使用android:gravity或setGravity()控制容器所有子视图的重力;使用android:layout_gravity或setLayoutParams()控制容器中单个视图的重力。

长话短说:要控制线性布局容器(如LinearLayout或RadioGroup)中的重力,有两种方法:

要控制LinearLayout容器的所有子视图的重力(正如您在书中所做的那样),请在布局XML文件中使用android:gravity(而不是android:layout_gravity)或代码中使用setGravity()方法。要控制子视图在其容器中的重力,请使用android:layout_gravity XML属性。在代码中,需要获取视图的LinearLayout.LayoutParams并设置其重力。下面是一个代码示例,它在水平方向的容器中将按钮设置为底部:import android.widget.LinearLayout.LayoutParams;import android.view.Gravity;...Button Button=(Button)findViewById(R.id.MyButtonId);//需要转换为LinearLayout.LayoutParams才能访问重力场LayoutParams params=(LayoutParams)按钮.getLayoutParams();params.gravity=重力.BOTTOM;button.setLayoutParams(params);

对于水平LinearLayout容器,其子视图的水平重力一个接一个地左对齐,不能更改。将android:layout_gravity设置为center_horizontal没有效果。默认垂直重力为中心(或center_vertical),可以更改为顶部或底部。实际上,默认layout_gravity值为-1,但Android将其垂直居中。

要更改水平线性容器中子视图的水平位置,可以使用子视图的layout_weight、margin和padding。

同样,对于垂直视图组容器,其子视图的垂直重力是上下对齐的,不能更改。默认水平重力为center(或center_horizontal),可以更改为向左或向右。

实际上,像按钮这样的子视图还具有android:gravity XML属性和setGravity()方法来控制其子视图——其中的文本。button.setGravity(int)链接到此developer.android.com条目。

android:gravity

用于调整视图相对于其指定位置(分配区域)的内容。如果layout_width等于“wrap_content”,android:gravity=“left”将不会执行任何操作

android:layout_gravity 

用于相对于父文件或布局文件的视图本身。

重力和布局重力有很多不同。我将解释我关于这两个概念的经验(我的观察和一些网站获得的所有信息)。

在FrameLayout中使用重力和布局重力。。。。。

注:-

重力在“视图内容”中使用,因为某些用户有答案,并且对于所有“视图组布局”也是如此。布局重力与父视图一起使用,因为某些用户有答案。重力和布局重力对于FrameLayout子对象更有用。我们不能在FrameLayout的标记中使用重力和布局重力。。。。我们可以使用布局重力在FrameLayout中的任何位置设置“子视图”。我们可以使用FrameLayout中的每一个重力值(例如:-center_vertical、center_horizontal、center、top等),但其他ViewGroup Layout无法使用。FrameLayout完全适用于布局重力。示例:-如果您使用FrameLayout,则无需更改整个布局以添加新视图。您只需将视图添加为FrameLayout中的最后一个,并为其提供具有值的布局重力。(这是FrameLayout布局重力的优势)。

看看例子。。。。。。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:textSize="25dp"
        android:background="#000"
        android:textColor="#264bd1"
        android:gravity="center"
        android:layout_gravity="center"
        android:text="Center Layout Gravity"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="80dp"
        android:textSize="25dp"
        android:background="#000"
        android:textColor="#1b64b9"
        android:gravity="bottom"
        android:layout_gravity="bottom|center"
        android:text="Bottom Layout Gravity" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="80dp"
        android:textSize="25dp"
        android:background="#000"
        android:textColor="#d75d1c"
        android:gravity="top"
        android:layout_gravity="top|center"
        android:text="Top Layout Gravity"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="80dp"
        android:textSize="25dp"
        android:background="#000"
        android:layout_marginTop="100dp"
        android:textColor="#d71f1c"
        android:gravity="top|right"
        android:layout_gravity="top|right"
        android:text="Top Right Layout Gravity"/>


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="80dp"
        android:textSize="25dp"
        android:background="#000"
        android:layout_marginBottom="100dp"
        android:textColor="#d71cb2"
        android:layout_gravity="bottom"
        android:gravity="bottom"
        android:text="Top Left Layout Gravity"/>

</FrameLayout>

输出:-

LinearLayout中重力和布局重力的使用。。。。。

重力的工作方式与上述相同,但这里的不同之处在于,我们可以在LinearLayout视图和RelativeLayout视图中使用重力,这在FrameLayout视图中是不可能的。

方向垂直的LinearLayout。。。。

注意:这里我们只能设置layout_gravity的三个值,即(左|右|中(也称为center_horizontal))。

查看示例:-

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="100dp"
        android:textSize="25dp"
        android:background="#000"
        android:textColor="#264bd1"
        android:gravity="center"
        android:layout_gravity="center_horizontal"
        android:text="Center Layout Gravity \nor \nCenter_Horizontal"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="80dp"
        android:textSize="25dp"
        android:background="#000"
        android:layout_marginTop="20dp"
        android:textColor="#d75d1c"
        android:layout_gravity="right"
        android:text="Right Layout Gravity"/>


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="80dp"
        android:textSize="25dp"
        android:background="#000"
        android:layout_marginBottom="100dp"
        android:textColor="#d71cb2"
        android:layout_gravity="left"
        android:layout_marginTop="20dp"
        android:gravity="bottom"
        android:text="Left Layout Gravity"/>

</LinearLayout>

输出:-

方向为水平的LinearLayout。。。。

注意:这里我们还可以设置layout_gravity的三个值,即(top|bottom|center(也称为center_vertical))。

查看示例:-

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:orientation="horizontal"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="120dp"
        android:layout_height="100dp"
        android:textSize="25dp"
        android:background="#000"
        android:textColor="#264bd1"
        android:gravity="center"
        android:layout_gravity="bottom"
        android:text="Bottom \nLayout \nGravity"/>

    <TextView
        android:layout_width="120dp"
        android:layout_height="100dp"
        android:textSize="25dp"
        android:background="#000"
        android:layout_marginTop="20dp"
        android:textColor="#d75d1c"
        android:layout_gravity="center"
        android:text="Center \nLayout \nGravity"/>


    <TextView
        android:layout_width="150dp"
        android:layout_height="100dp"
        android:textSize="25dp"
        android:background="#000"
        android:layout_marginBottom="100dp"
        android:textColor="#d71cb2"
        android:layout_gravity="left"
        android:layout_marginTop="20dp"
        android:text="Left \nLayout \nGravity"/>

</LinearLayout>

输出:-

注意:-我们不能在RelativeLayout视图中使用layout_gravity,但我们可以使用重力将RelativeLlayout子对象设置为相同的位置。。。。