划分布局

时间:2018-06-18 17:51:43

标签: android layout divide

我接受了以下活动

<?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:fillViewport="true"
    android:background="@color/colorGray"
    tools:context=".ProductsActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:orientation="vertical"
        app:layout_constraintBottom_toTopOf="@+id/navigation"
        app:layout_constraintTop_toTopOf="parent"></LinearLayout>

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/navigation"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="?android:attr/windowBackground"
        app:itemIconTint="@drawable/btv_tab_item_foreground"
        app:itemTextColor="@drawable/btv_tab_item_foreground"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/navigation" />
 </android.support.constraint.ConstraintLayout>

在我的LinearLayout中,我想添加让我们说6个文本视图或按钮或其他什么,我想要他们的

  • 宽度等于父级宽度
  • 身高,彼此相等

enter image description here

上面的图像(线条没有正确调整,因为它们是用MS Paint绘制的)。但我认为你明白了。

1 个答案:

答案 0 :(得分:0)

<LinearLayout
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:orientation="vertical">

     <TextView
        android:text="Register"
        android:layout_width="wrap_content" 
        android:layout_height="0dp"
        android:padding="10dp"
        android:layout_weight="1" />

    // same code as above textView 5 more times 

  </LinearLayout>