如何在ConstraintLayout中使用固定边距和动态宽度均匀地放置视图?

时间:2016-11-17 22:11:42

标签: android android-constraintlayout

我想像这样设置ConstraintLayout:

enter image description here

我需要固定左右约束,尺寸尺寸比为1:1,宽度将灵活,并且可以调整到屏幕的实际宽度。我设置了以下内容:

  1. 左右约束为8dp
  2. 这些视图的尺寸设置为"任意尺寸"
  3. layout_constraintDimensionRatio =" 1:1"
  4. 我所拥有的是所有视图都设置为点,除了设置了左右约束(其他只有左约束)的视图。那个人已经采用了1:1的比例规则。

    如何修复此布局?

    这是我尝试添加链的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:id="@+id/activity_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context="rs.agilesolutions.constraintlayouttest.MainActivity">
    
        <TextView
            android:id="@+id/textView"
            android:text="1"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintHorizontal_weight="1"
            app:layout_constraintLeft_toLeftOf="parent"
            android:layout_marginStart="8dp"
            android:layout_marginLeft="8dp"
            app:layout_constraintTop_toTopOf="parent"
            android:layout_marginTop="16dp"
            style="@style/TextViewCustom"
            app:layout_constraintRight_toLeftOf="@+id/textView2"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            app:layout_constraintDimensionRatio="1:1" />
    
        <TextView
            android:id="@+id/textView2"
            android:text="2"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintHorizontal_weight="1"
            app:layout_constraintBaseline_toBaselineOf="@+id/textView"
            style="@style/TextViewCustom"
            app:layout_constraintRight_toLeftOf="@+id/textView3"
            app:layout_constraintLeft_toRightOf="@+id/textView"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            app:layout_constraintDimensionRatio="1:1" />
    
        <TextView
            android:id="@+id/textView3"
            android:text="3"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintHorizontal_weight="1"
            app:layout_constraintBaseline_toBaselineOf="@+id/textView"
            style="@style/TextViewCustom"
            app:layout_constraintRight_toLeftOf="@+id/textView4"
            app:layout_constraintLeft_toRightOf="@+id/textView2"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            app:layout_constraintDimensionRatio="1:1" />
    
        <TextView
            android:id="@+id/textView4"
            android:text="4"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintHorizontal_weight="1"
            app:layout_constraintBaseline_toBaselineOf="@+id/textView"
            style="@style/TextViewCustom"
            app:layout_constraintRight_toLeftOf="@+id/textView5"
            app:layout_constraintLeft_toRightOf="@+id/textView3"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            app:layout_constraintDimensionRatio="1:1" />
    
        <TextView
            android:id="@+id/textView5"
            android:text="5"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintHorizontal_weight="1"
            app:layout_constraintBaseline_toBaselineOf="@+id/textView"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintLeft_toRightOf="@+id/textView4"
            style="@style/TextViewCustom"
            app:layout_constraintDimensionRatio="1:1" />
    
    </android.support.constraint.ConstraintLayout>
    

    这就是结果:

    enter image description here

    非常接近但不够好。

1 个答案:

答案 0 :(得分:6)

您可以创建chains以确保相同的分布(例如,每行一个链) - 这样每个小部件将具有相同的维度。你描述的其余内容应该是正确的。

编辑:这是一些XML。诀窍是只在第一个元素上设置边距。

- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
  ///Processing the text value of the current element
  NSCharacterSet *characterSet = [NSCharacterSet whitespaceAndNewlineCharacterSet];
  NSString *text = [string stringByTrimmingCharactersInSet: characterSet];
  [_selfText appendString:text]; //Here append the string without line break
}

enter image description here