将LinearLayout和“百分比”边距居中

时间:2012-10-08 10:46:04

标签: android android-layout margin centering android-percentrelativelayout

编辑:我已收到两份关于固定保证金的综合答案。虽然我已经决定使用固定边距而不是重量边距,但最初的问题仍未解决。

我想在Android中获得以下设计:

Desired Layout

一个居中的垂直列表(TextViews,EditViews等),它留下大约10%的水平空间作为左/右边距,带背景。

我尝试过但没有工作/部分工作:

  • LinearLayout,vertical,作为顶级布局。如果重力设置为“居中”,则背景将限制为布局的大小。另外,如何以这种方式设置百分比边距(宽度)?
  • RelativeLayout上的LinearLayout:背景有效,水平居中工作,权重不存在。
  • LinearLayout上的LinearLayout:背景有效,权重工作,水平居中将所有可用空间推向右侧。

(在最后两个案例中,我的Eclipse也抱怨其中一个布局是多余的。)

我没有发布代码,认为这更像是一个与原则相关的问题。实现这个目标的最佳方式是什么?

谢谢。

对应于最后一个测试用例的XML:

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:baselineAligned="false"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1.0"
    android:weightSum="1.0"
    android:background="#013c57" >

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/linearLayout1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="0.9"
        android:layout_gravity="center"
        android:orientation="vertical" >

        <!-- Stuff -->
    </LinearLayout>
</LinearLayout>

5 个答案:

答案 0 :(得分:2)

这是用于创建此类布局的最简单的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:orientation="vertical" 
    android:background="#000"
    android:gravity="center">

    <EditText android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"/>

    <EditText android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"/>

    <EditText android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"/>

    <EditText android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"/>
</LinearLayout>

答案 1 :(得分:1)

您可以使用compile 'com.android.support:percent:24.2.1'

您现在可以使用PercentFrameLayout或PercentRelativeLayout。它们都具有以下属性:

layout_widthPercent
layout_heightPercent
layout_marginPercent
layout_marginLeftPercent
layout_marginTopPercent
layout_marginRightPercent
layout_marginBottomPercent
layout_marginStartPercent
layout_marginEndPercent



<?xml version="1.0" encoding="utf-8"?>
<android.support.percent.PercentRelativeLayout
    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">

    <TextView
        android:id="@+id/txt1"
        android:background="#ff7acfff"
        android:text="50% - 50% margin 25"
        android:textColor="@android:color/white"
        app:layout_marginTopPercent="10%"
        app:layout_marginLeftPercent="10%"
        app:layout_heightPercent="10%"
        app:layout_widthPercent="80%" />

    <TextView
        android:layout_below="@id/txt1"
        android:id="@+id/txt2"
        android:background="#ff7acfff"
        android:text="50% - 50% margin 25"
        android:textColor="@android:color/white"
        app:layout_marginTopPercent="10%"
        app:layout_marginLeftPercent="10%"
        app:layout_heightPercent="10%"
        app:layout_widthPercent="80%"/>

    <TextView
        android:layout_below="@id/txt2"
        android:id="@+id/txt3"
        android:background="#ff7acfff"
        android:text="50% - 50% margin 25"
        android:textColor="@android:color/white"
        app:layout_marginTopPercent="10%"
        app:layout_marginLeftPercent="10%"
        app:layout_heightPercent="10%"
        app:layout_widthPercent="80%"/>

    <TextView
        android:layout_below="@id/txt3"
        android:id="@+id/txt4"
        android:background="#ff7acfff"
        android:text="50% - 50% margin 25"
        android:textColor="@android:color/white"
        app:layout_marginTopPercent="10%"
        app:layout_marginLeftPercent="10%"
        app:layout_heightPercent="10%"
        app:layout_widthPercent="80%"/>


</android.support.percent.PercentRelativeLayout>

答案 2 :(得分:0)

我认为相对布局是更好的选择!

尝试阅读此主题:

Percentage width in a RelativeLayout

我希望它会对你有所帮助!

答案 3 :(得分:0)

<?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:orientation="vertical"
    android:background="#000"
    android:gravity="center">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:background="#000"
        android:layout_gravity="center"
        android:gravity="center">

        <EditText android:layout_width="fill_parent"
            android:margin_left="10dp"
            android:layout_height="wrap_content"
            android:layout_weight="1" />

        <EditText android:layout_width="fill_parent"
            android:margin_left="10dp"
            android:layout_height="wrap_content"
            android:layout_weight="1" />

        <EditText android:layout_width="fill_parent"
            android:margin_left="10dp"
            android:layout_height="wrap_content"
            android:layout_weight="1" />

        <EditText android:layout_width="fill_parent"
            android:margin_left="10dp"
            android:layout_height="wrap_content"
            android:layout_weight="1" />

    </LinearLayout>

</LinearLayout>

试试这个

答案 4 :(得分:0)

随着ConstraintLayout的引入,您可以通过指南限制视图的百分比边距。

以下是示例:

Layout Editor

<?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">

    <EditText
        android:id="@+id/editText1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toTopOf="@+id/editText2"
        app:layout_constraintEnd_toStartOf="@+id/endGuideline"
        app:layout_constraintStart_toStartOf="@+id/startGuideline"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_chainStyle="packed" />

    <EditText
        android:id="@+id/editText2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        app:layout_constraintBottom_toTopOf="@+id/editText3"
        app:layout_constraintEnd_toStartOf="@+id/endGuideline"
        app:layout_constraintStart_toStartOf="@+id/startGuideline"
        app:layout_constraintTop_toBottomOf="@+id/editText1" />

    <EditText
        android:id="@+id/editText3"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        app:layout_constraintBottom_toTopOf="@+id/editText4"
        app:layout_constraintEnd_toStartOf="@+id/endGuideline"
        app:layout_constraintStart_toStartOf="@+id/startGuideline"
        app:layout_constraintTop_toBottomOf="@+id/editText2" />

    <EditText
        android:id="@+id/editText4"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/endGuideline"
        app:layout_constraintStart_toStartOf="@+id/startGuideline"
        app:layout_constraintTop_toBottomOf="@+id/editText3" />

    <android.support.constraint.Guideline
        android:id="@+id/startGuideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.1" />

    <android.support.constraint.Guideline
        android:id="@+id/endGuideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.9" />

</android.support.constraint.ConstraintLayout>