这是我的应用:
我想在屏幕中间放置一个linearlayout(蓝色)。 (实际上是身高的一半)。
我不知道该怎么做。
这是我的代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#E9E9E9"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin" >
<TextView
android:id="@+id/txt_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="30dp"
android:text="title app"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="70sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="230dp"
android:background="@color/blue_dark_normal"
android:layout_centerVertical="true"
android:orientation="vertical" >
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_marginLeft="15dp"
android:layout_marginRight="5dp"
android:layout_weight="1"
android:orientation="vertical" >
<Button
android:id="@+id/startact_btn_connect"
style="?android:attr/borderlessButtonStyle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@drawable/bg_blue_button_login"
android:text="Se connecter"
android:textColor="@color/blanc" />
<View
android:layout_width="fill_parent"
android:layout_height="3dp"
android:layout_marginBottom="10dp"
android:background="@color/blue_pressed" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_marginLeft="5dp"
android:layout_marginRight="15dp"
android:layout_weight="1"
android:orientation="vertical" >
<Button
android:id="@+id/startact_btn_view_annonces"
style="?android:attr/borderlessButtonStyle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@drawable/bg_blue_dark_button_login"
android:text="Voir les annonces"
android:textColor="@color/blanc" />
<View
android:layout_width="fill_parent"
android:layout_height="3dp"
android:layout_marginBottom="10dp"
android:background="@color/blue_dark_pressed" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:1)
使用RelativeLayout
作为根,只需将layout_centerInParent=true
添加到您想要居中的LinearLayout
。
答案 1 :(得分:0)
我相信你可以用重量来做到这一点。
这是我的代码,使LinearLayout以半高为中心,蓝色:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/topQuarterHeight"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp" />
<LinearLayout
android:background="#FF0000FF"
android:orientation="vertical"
android:id="@+id/midHalfHeight"
android:layout_weight="2"
android:layout_width="match_parent"
android:layout_height="0dp"></LinearLayout>
<FrameLayout
android:id="@+id/bottomQuarterHeight"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp" />
</LinearLayout>
这是预览的样子:
答案 2 :(得分:0)
试试这个:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#E9E9E9"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin" >
<TextView
android:id="@+id/txt_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="30dp"
android:text="title app"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="70sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="230dp"
android:background="@color/blue_dark_normal"
android:layout_centerInParent="true"
android:orientation="vertical" >
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_marginLeft="15dp"
android:layout_marginRight="5dp"
android:layout_weight="1"
android:orientation="vertical" >
<Button
android:id="@+id/startact_btn_connect"
style="?android:attr/borderlessButtonStyle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@drawable/bg_blue_button_login"
android:text="Se connecter"
android:textColor="@color/blanc" />
<View
android:layout_width="fill_parent"
android:layout_height="3dp"
android:layout_marginBottom="10dp"
android:background="@color/blue_pressed" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_marginLeft="5dp"
android:layout_marginRight="15dp"
android:layout_weight="1"
android:orientation="vertical" >
<Button
android:id="@+id/startact_btn_view_annonces"
style="?android:attr/borderlessButtonStyle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@drawable/bg_blue_dark_button_login"
android:text="Voir les annonces"
android:textColor="@color/blanc" />
<View
android:layout_width="fill_parent"
android:layout_height="3dp"
android:layout_marginBottom="10dp"
android:background="@color/blue_dark_pressed" />
</LinearLayout>
</LinearLayout>