我只是在设计登录布局。但是,我想设置一个布局重心(完整的布局内容设置在屏幕的中心)。我正在使用重力中心,但它没有给我正确的输出,所以可能是我有另一个问题的问题。贝娄是我的布局xml代码。因此,有人可以建议我在哪里遇到问题!!!
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="30dp"
android:paddingLeft="20dp"
android:layout_marginTop="10dp"
android:background="#458221"
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="center"
<!-- I want to set this layout into the center of the screen ,This layout cann't set the gravity center -->
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="User Name: "
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="user"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="password"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="pass"
/>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:1)
考虑使用相对布局。然后,您可以将<script>
$(function () {
var chat = jQuery.connection.chat;
chat.addMessage = function (message, room) {
if ($('#currentRoom').val() == room) {
$('#messagesList').append(message);
}
};
chat.send($('#textboxMessage').val(), $('#currentRoom').val());
$('#textboxMessage').val("");
$.connection.hub.start();
});
</script>
水平和垂直地放在父级中心。
答案 1 :(得分:0)
您需要像这样制作根元素FrameLayout
或RelativeLayout
:
<?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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="30dp"
android:paddingLeft="20dp"
android:layout_marginTop="10dp"
android:background="#458221"
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="center" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="User Name: "
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="user"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="password"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="pass"
/>
</LinearLayout>
</FrameLayout>
答案 2 :(得分:0)
将重力改为:
android:gravity="center_vertical|center_horizontal"
它应该解决你的问题
答案 3 :(得分:0)
您只需将android:gravity="center"
添加到最顶层的父线性布局,如下所示。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="30dp"
android:paddingLeft="20dp"
android:layout_marginTop="10dp"
android:background="#458221"
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="User Name: "
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="user"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="password"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="pass"
/>
</LinearLayout>
</LinearLayout>
android:gravity - 与这些LayoutParams关联的视图的重力。
android:layout_gravity - 儿童提供给其父级的标准重力常量。定义子视图在其封闭布局中在X轴和Y轴上的定位方式。
答案 4 :(得分:0)
<强>机器人:layout_gravity 强>
android:layout_gravity
用于设置元素在 paren t中的位置(例如布局中的子视图)。由LinearLayout
和FrameLayout
<强>机器人:重力强>
android:gravity
用于设置内容内部元素的位置(例如TextView中的文本)。
获取和想法复制此XML并了解其工作原理
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical"
android:layout_gravity="left"
android:gravity="center_vertical">
<TextView
android:layout_width="@dimen/fixed"
android:layout_height="wrap_content"
android:text="@string/first"
android:background="@color/colorPrimary"
android:gravity="left"/>
<TextView
android:layout_width="@dimen/fixed"
android:layout_height="wrap_content"
android:text="@string/second"
android:background="@color/colorPrimary"
android:gravity="center"/>
<TextView
android:layout_width="@dimen/fixed"
android:layout_height="wrap_content"
android:text="@string/third"
android:background="@color/colorPrimary"
android:gravity="right"/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical"
android:layout_gravity="center"
android:gravity="center_vertical">
<TextView
android:layout_width="@dimen/fixed"
android:layout_height="wrap_content"
android:text="@string/first"
android:background="@color/colorAccent"
android:gravity="left"/>
<TextView
android:layout_width="@dimen/fixed"
android:layout_height="wrap_content"
android:text="@string/second"
android:background="@color/colorAccent"
android:gravity="center"/>
<TextView
android:layout_width="@dimen/fixed"
android:layout_height="wrap_content"
android:text="@string/third"
android:background="@color/colorAccent"
android:gravity="right"/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical"
android:layout_gravity="right"
android:gravity="center_vertical">
<TextView
android:layout_width="@dimen/fixed"
android:layout_height="wrap_content"
android:text="@string/first"
android:background="@color/colorPrimaryDark"
android:gravity="left"/>
<TextView
android:layout_width="@dimen/fixed"
android:layout_height="wrap_content"
android:text="@string/second"
android:background="@color/colorPrimaryDark"
android:gravity="center"/>
<TextView
android:layout_width="@dimen/fixed"
android:layout_height="wrap_content"
android:text="@string/third"
android:background="@color/colorPrimaryDark"
android:gravity="right"/>
</LinearLayout>
</LinearLayout>