创建具有重量的灵活按钮(链接+传播)

时间:2017-08-30 21:32:44

标签: android xml

我试图让我的按钮均匀地填充空间,基本上每个按钮填充剩余空间的三分之一(有三个按钮)。

根据here,我应该链接视图(按钮)然后展开它们,并在必要时按重量填充空格。然后我应该将按钮垂直约束改为" Match Constraints"。但是,这会导致按钮不均匀。我最后在XML文件的文本中为每个layout_constraintVertical_weight=""添加了button,但无济于事。使用android:layout_height也不起作用。

XML代码:

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#CCFFE5"
    android:weightSum="1"
    tools:context="com.example.shaynimex.boomnumber.HomeScreen">

    <TextView
        android:layout_width="0dp"
        android:layout_height="52dp"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginTop="16dp"
        android:fontFamily="cursive"
        android:text="Boom Number"
        android:textAlignment="center"
        android:textSize="50sp"
        android:textStyle="bold"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:id="@+id/textView"
        android:layout_marginStart="8dp"
        android:layout_marginEnd="8dp" />

    <Button
        android:id="@+id/button"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="1 PLAYER"
        android:textSize="30sp"
        android:textStyle="bold"
        app:layout_constraintBottom_toTopOf="@+id/button3"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintVertical_chainStyle="packed"
        android:layout_marginTop="8dp"
        app:layout_constraintTop_toBottomOf="@+id/textView" />

    <Button
        android:id="@+id/button3"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="2 PLAYER"
        android:textAlignment="center"
        android:textSize="30sp"
        android:textStyle="bold"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintHorizontal_bias="1.0"
        android:layout_marginTop="8dp"
        app:layout_constraintTop_toBottomOf="@+id/button"
        app:layout_constraintBottom_toTopOf="@+id/button4" />

    <Button
        android:id="@+id/button4"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="How to Play"
        android:textAlignment="center"
        android:textSize="30sp"
        android:textStyle="bold"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintTop_toBottomOf="@+id/button3"
        app:layout_constraintBottom_toBottomOf="parent" />

它目前看起来像这样(对于Pixel XL):

enter image description here

那么我如何将重量应用于按钮并使它们均匀地填充剩余空间呢?

1 个答案:

答案 0 :(得分:0)

由于权重的难度,我没有使用ConstraintLayout。

enter image description here

如果这就是你想要的,我只是做了这种代码。

<?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:background="#CCFFE5">

  <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fontFamily="cursive"
    android:text="Boom Number"
    android:textAlignment="center"
    android:textSize="50sp"
    android:textStyle="bold"
    android:id="@+id/textView"/>


  <FrameLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1">

    <Button
      android:id="@+id/button"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:text="1 PLAYER"
      android:textSize="30sp"
      android:textStyle="bold"/>
  </FrameLayout>

  <FrameLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1">

    <Button
      android:id="@+id/button3"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:text="2 PLAYER"
      android:textAlignment="center"
      android:textSize="30sp"
      android:textStyle="bold"
      android:layout_marginTop="8dp"      />
  </FrameLayout>

  <FrameLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1">

    <Button
      android:id="@+id/button4"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:text="How to Play"
      android:textAlignment="center"
      android:textSize="30sp"
      android:textStyle="bold"/>
  </FrameLayout>
  </LinearLayout>