ConstraintLayoutDemo【約束性佈局知識梳理】【基於1.1.3】

来源:https://www.cnblogs.com/whycxb/archive/2019/04/20/9861030.html
-Advertisement-
Play Games

版權聲明:本文為HaiyuKing原創文章,轉載請註明出處! 前言 在較新版本的Android Studio中新建項目預設使用 ConstraintLayout進行佈局的。 ConstraintLayout是一個允許您以靈活的方式定位和調整小部件的ViewGroup。 註意: ConstraintL ...


版權聲明:本文為HaiyuKing原創文章,轉載請註明出處!

前言

在較新版本的Android Studio中新建項目預設使用 ConstraintLayout進行佈局的。

ConstraintLayout是一個允許您以靈活的方式定位和調整小部件的ViewGroup。

註意: ConstraintLayout作為支持庫提供,您可以在API級別9(Gingerbread)開始的Android系統上使用。

開發者指南梳理

以下內容參考《ConstraintLayout開發者指南

一、相對定位【Relative positioning】

相對定位是在ConstraintLayout中創建佈局的基本構建塊之一。這些約束允許您將指定的控制項(源控制項)相對於另一個控制項(目標控制項)進行定位您可以在水平和垂直軸上約束控制項:

  • 水平方向: leftrightstartend
  • 垂直方向: topbottomtext baseline

備註:start,end,left,right的區別

1、其中left/right代表一種絕對的對齊,start/end表示基於閱讀順序的對齊。 

說到閱讀順序又不得不提目前存在的主要閱讀方式: 從左向右(LTR)和從右向左(RTL);

當使用left/right的時候,無論是LTR還是RTL,總是左/右對齊的;而使用start/end,如閱讀順序是從左到右(LTR)的國家,start在左邊,在閱讀順序是從右到左(RTL)的國家(比如阿拉伯),start在右邊。

2、當minSdkVersion>=17時,建議使用start/end來代替left/right;

當minSdkVersion<17時,舊的平臺不支持RTL(從右到左--Right To Left),start/end屬性是未知的,會被忽略,所以需要同時使用start/end和left/right。

以下是可用約束屬性的列表

  • app:layout_constraintLeft_toLeftOf
  • app:layout_constraintLeft_toRightOf
  • app:layout_constraintRight_toLeftOf
  • app:layout_constraintRight_toRightOf
  • app:layout_constraintTop_toTopOf
  • app:layout_constraintTop_toBottomOf
  • app:layout_constraintBottom_toTopOf
  • app:layout_constraintBottom_toBottomOf
  • app:layout_constraintBaseline_toBaselineOf
  • app:layout_constraintStart_toEndOf
  • app:layout_constraintStart_toStartOf
  • app:layout_constraintEnd_toStartOf
  • app:layout_constraintEnd_toEndOf

用法解析:

1、上面的約束屬性一般寫在源控制項上;

2、約束屬性引用的id或者parent代表目標控制項

3、約束屬性含義解讀:將源控制項的指定側約束到目標控制項的其中一側

比如:app:layout_constraintLeft_toLeftOf——當前源控制項的左側被約束(constraintLeft)到目標控制項的左側(toLeftOf)

例子1:將按鈕B定位在按鈕A的右側,意味著系統將嘗試讓雙方共用相同的位置。 

<Button
        android:id="@+id/buttonA"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
<Button
        android:id="@+id/buttonB"
        app:layout_constraintLeft_toRightOf="@id/buttonA"/>

 例子2:按鈕A和按鈕B文本基線對齊,且按鈕B在按鈕A右側

<?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"
    tools:context=".MainActivity"
    android:padding="8dp">

    <Button
        android:id="@+id/buttonA"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕A"
        android:background="#ffb300"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/buttonB"
        android:layout_width="50dp"
        android:layout_height="20dp"
        android:text="按鈕B"
        android:background="#b7ff00"
        app:layout_constraintBaseline_toBaselineOf="@id/buttonA"
        app:layout_constraintLeft_toRightOf="@id/buttonA"
        />

</android.support.constraint.ConstraintLayout>

 

二、外邊距【Margins】

如果設置了邊距,則它們將應用於相應的約束(如果存在約束,系統將邊距強製為目標和源邊之間的空間。

什麼叫邊距應用於相應的約束(如果存在約束)?可以簡單理解為android:layout_marginLeft和app:layout_constraintLeft_toLeftOf、app:layout_constraintLeft_toRightOf配合使用才會生效!保證設置邊距的方向(left\right\top\bottom\start\end)和相對定位約束的源控制項的方向(left\right\top\bottom\start\end)一致!剩下的以此類推!見例子2。

以下是佈局邊距屬性的列表:

  • android:layout_marginStart
  • android:layout_marginEnd
  • android:layout_marginLeft
  • android:layout_marginTop
  • android:layout_marginRight
  • android:layout_marginBottom

用法解析:

1、一般寫在源控制項上;

2、約束屬性含義解讀:當前控制項(源控制項)的指定側距離與其具有約束關係的控制項(目標控制項)的其中一側的空間值

3、屬性值必須是大於或者等於0

4、當目標控制項設置為可見性為gone的時候,源控制項的邊距仍有效

例子1:將按鈕B定位在按鈕A的右側,並且設置相距8dp

<Button
        android:id="@+id/buttonA"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
<Button
        android:id="@+id/buttonB"
        app:layout_constraintLeft_toRightOf="@id/buttonA"
        android:layout_marginLeft="8dp"/>

例子2:按鈕B和按鈕A文本基線對齊,且按鈕B的左側和按鈕A的左側對齊,且邊距為8dp

<?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"
    tools:context=".MainActivity"
    android:padding="8dp">

    <Button
        android:id="@+id/buttonA"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕A"
        android:background="#ffb300"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/buttonB"
        android:layout_width="50dp"
        android:layout_height="20dp"
        android:text="按鈕B"
        android:background="#b7ff00"
        app:layout_constraintBaseline_toBaselineOf="@id/buttonA"
        app:layout_constraintLeft_toLeftOf="@id/buttonA"
        android:layout_marginLeft="8dp"
        />

</android.support.constraint.ConstraintLayout>

如果去掉app:layout_constraintLeft_toLeftOf屬性的話,設置的邊距值是無效的,效果如下:

<Button
        android:id="@+id/buttonA"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕A"
        android:background="#ffb300"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/buttonB"
        android:layout_width="50dp"
        android:layout_height="20dp"
        android:text="按鈕B"
        android:background="#b7ff00"
        app:layout_constraintBaseline_toBaselineOf="@id/buttonA"
        android:layout_marginLeft="8dp"
        />

例子3:按鈕A隱藏的情況下,按鈕B在按鈕A右側,且邊距為8dp【此時按鈕B的外邊距8dp仍是有效的

<Button
        android:id="@+id/buttonA"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:visibility="gone"/>

<Button
        android:id="@+id/buttonB"
        app:layout_constraintLeft_toRightOf="@id/buttonA"
        android:layout_marginLeft="8dp"
        />

三、連接到GONE控制項時的邊距【Margins when connected to a GONE widget】

 當約束目標控制項的可見性為View.GONE時,可以配合使用以下屬性設置不同邊距值:

  • app:layout_goneMarginStart
  • app:layout_goneMarginEnd
  • app:layout_goneMarginLeft
  • app:layout_goneMarginTop
  • app:layout_goneMarginRight
  • app:layout_goneMarginBottom

和android:layout_MarginLeft等的區別就在於,當目標控制項隱藏(GONE)的時候,android:layout_MarginLeft設置的外邊距值還生效,而app:layout_goneMarginLeft設置的外邊距值則會失效!

例子1:按鈕A隱藏的情況下,按鈕B在按鈕A右側,且邊距為8dp【此時按鈕B的外邊距8dp是無效的

<?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"
    tools:context=".MainActivity"
    android:padding="8dp">

    <Button
        android:id="@+id/buttonA"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕A"
        android:background="#ffb300"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:visibility="gone"/>

    <Button
        android:id="@+id/buttonB"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕B"
        android:background="#b7ff00"
        app:layout_constraintLeft_toRightOf="@id/buttonA"
        app:layout_goneMarginLeft="8dp"
        />

</android.support.constraint.ConstraintLayout>

 

四、可見性行為【Visibility behavior】

一般情況下,A控制項設置 GONE屬性後,A控制項就不會出現在佈局中了,B控制項對A控制項的android:layout_MarginXXX屬性也就沒有作用了。但是 ConstraintLayout 能對已經設置 GONE屬性的控制項進行特殊處理。當A控制項設置 GONE之後,A控制項相當於變成了一個點,B控制項相對於對A的約束仍然是起作用的,B控制項的android:layout_MarginXXX屬性還是有作用的。

  • 對於gone的控制項,它們的尺寸將被視為零(基本上,它們將被解析為一個點);
  • 如果已gone的控制項對其他控制項有約束,他們仍然會受到尊重,但已gone的控制項任何邊距都會等於零;

有時候,B控制項是不希望相對於隱藏控制項A的屬性還起作用。這時候可以用到上面提到的app:layout_goneMarginXXX屬性。

例子1:按鈕A隱藏後,按鈕A的外邊距失效,均等於0

初始狀態:

<?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"
    tools:context=".MainActivity"
    android:padding="8dp"
    >
    <Button
        android:id="@+id/buttonA"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕A"
        android:background="#ffb300"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        />
    <Button
        android:id="@+id/buttonB"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕B"
        android:background="#b7ff00"
        app:layout_constraintLeft_toRightOf="@id/buttonA"
        />
</android.support.constraint.ConstraintLayout>

設置按鈕A的外邊距值為5dp:

<Button
        android:id="@+id/buttonA"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_marginLeft="5dp"
        />
<Button
        android:id="@+id/buttonB"
        app:layout_constraintLeft_toRightOf="@id/buttonA"
        />

設置按鈕A隱藏狀態GONE(可以發現按鈕A的外邊距5dp失效了):

    <Button
        android:id="@+id/buttonA"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_marginLeft="5dp"
        android:visibility="gone"
        />
    <Button
        android:id="@+id/buttonB"
        app:layout_constraintLeft_toRightOf="@id/buttonA"
        />

 

五、居中定位【Centering positioning】

水平居中(parent表示相對於父節點):

app:layout_constraintLeft_toLeftOf="parent"

app:layout_constraintRight_toRightOf="parent"

垂直居中(parent表示相對於父節點):

app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"

上圖是水平居中的示意圖。

ConstraintLayout是如何處理“相反”的約束,比如下麵的代碼,除非ConstraintLayout恰好具有Button與之完全相同的大小,否則兩個約束不能同時滿足;在這種情況下發生的事情是,約束的作用就像是相反的力量將控制項拉平; 這樣控制項最終將在父容器中居中。這同樣適用於垂直約束。

例子1:按鈕A水平居中

<?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"
    tools:context=".MainActivity"
    android:padding="8dp"
    >
    <Button
        android:id="@+id/buttonA"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕A"
        android:background="#ffb300"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        />
</android.support.constraint.ConstraintLayout>

例子2:按鈕B居中在按鈕A中(如果按鈕A和按鈕B大小一致,那麼按鈕B就會和按鈕A重疊)

<?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"
    tools:context=".MainActivity"
    android:padding="8dp"
    >

    <Button
        android:id="@+id/buttonA"
        android:layout_width="200dp"
        android:layout_height="80dp"
        android:text="按鈕A"
        android:background="#ffb300"

        />

    <Button
        android:id="@+id/buttonB"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕B"
        android:background="#b7ff00"
        app:layout_constraintLeft_toLeftOf="@id/buttonA"
        app:layout_constraintRight_toRightOf="@id/buttonA"
        app:layout_constraintTop_toTopOf="@id/buttonA"
        app:layout_constraintBottom_toBottomOf="@id/buttonA"
        />
</android.support.constraint.ConstraintLayout>

五、偏差【Bias】

遇到這種相反的約束時的預設設置是使控制項居中(也就是預設偏差50%); 但是您可以使用偏差屬性調整定位以使一側偏向另一側:

可以使用的屬性:

  • layout_constraintHorizontal_bias(水平偏差,取值範圍:0.0~1.0)
  • layout_constraintVertical_bias(垂直偏差,取值範圍:0.0~1.0)

所以,可以得知,偏差屬性是需要和“反約束”屬性一起使用的。那麼什麼是“反約束”屬性呢?個人簡單理解為下麵的是反約束屬性(僅供參考):

  • app:layout_constraintLeft_toLeftOf【反約束屬性】
  • app:layout_constraintLeft_toRightOf
  • app:layout_constraintRight_toLeftOf
  • app:layout_constraintRight_toRightOf【反約束屬性】
  • app:layout_constraintTop_toTopOf【反約束屬性】
  • app:layout_constraintTop_toBottomOf
  • app:layout_constraintBottom_toTopOf
  • app:layout_constraintBottom_toBottomOf【反約束屬性】
  • app:layout_constraintBaseline_toBaselineOf
  • app:layout_constraintStart_toEndOf
  • app:layout_constraintStart_toStartOf【反約束屬性】
  • app:layout_constraintEnd_toStartOf
  • app:layout_constraintEnd_toEndOf【反約束屬性】

例子1:按鈕A水平居偏移30%,按鈕B水平居中

<?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"
    tools:context=".MainActivity"
    android:padding="8dp"
    >

    <Button
        android:id="@+id/buttonA"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕A"
        android:background="#ffb300"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintHorizontal_bias="0.3"
        />

    <Button
        android:id="@+id/buttonB"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕B"
        android:background="#b7ff00"
        app:layout_constraintTop_toBottomOf="@id/buttonA"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        />
</android.support.constraint.ConstraintLayout>

 

六、圓形定位(1.1中增加)【Circular positioning (Added in 1.1)】

您可以以角度和半徑距離約束控制項中心相對於另一個控制項中心。這允許您將控制項放在圓上(如下圖所示)。

     

可以使用以下屬性:

  • app:layout_constraintCircle :引用的另一個控制項(目標控制項)ID值
  • app:layout_constraintCircleRadius :源控制項的中心到其他控制項(目標控制項)中心的距離
  • app:layout_constraintCircleAngle :源控制項應該處於哪個角度(以度為單位,從0到360)

例子1、按鈕B在按鈕A的30度角半徑為100dp的位置上

<?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"
    tools:context=".MainActivity"
    android:padding="8dp"
    >

    <Button
        android:id="@+id/buttonA"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕A"
        android:background="#ffb300"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        />

    <Button
        android:id="@+id/buttonB"
        android:layout_width="100dp"
        android:layout_height="40dp"
        android:text="按鈕B"
        android:background="#b7ff00"
        app:layout_constraintCircle="@id/buttonA"
        app:layout_constraintCircleRadius="100dp"
        app:layout_constraintCircleAngle="30"
        />
</android.support.constraint.ConstraintLayout>

 

七、尺寸約束【Dimensions constraints】

7.1、ConstraintLayout上的最大、最小尺寸約束【Minimum dimensions on ConstraintLayout】

你可以給ConstraintLayout設置以下最大、最小尺寸約束:

  • android:minWidth 設置佈局的最小寬度
  • android:minHeight 設置佈局的最小高度
  • android:maxWidth 設置佈局的最大寬度
  • android:maxHeight 設置佈局的最大高度

當 ConstraintLayout寬高設置為 wrap_content時,以上屬性可以起作用。

按照字面的理解是在ConstraintLayout佈局控制項上設置這些屬性,而不是控制項上(比如Button、TextView等)設置這些屬性。可能這些屬性更適合用在ConstraintLayout佈局控制項上吧。普通控制項上也是可以使用的,但是有問題。

例子1:文本A所在的ConstraintLayout區域設置最小寬高,文本B所在的ConstraintLayout區域設置最大寬高

<?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"
    tools:context=".MainActivity"
    android:padding="8dp"
    >
    <android.support.constraint.ConstraintLayout
        android:id="@+id/buttonALayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:minWidth="100dp"
        android:minHeight="40dp">

        <TextView
            android:id="@+id/textA"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="文本A"
            android:background="#ffb300"
            />

    </android.support.constraint.ConstraintLayout>

    <android.support.constraint.ConstraintLayout
        android:id="@+id/buttonBLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:maxWidth="100dp"
        android:maxHeight="40dp"
        app:layout_constraintLeft_toRightOf="@id/buttonALayout">

        <TextView
            android:id="@+id/textB"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="文本B文本B文本B文本B\n文本B文本B文本B文本B\n文本B文本B文本B文本B"
            android:background="#b7ff00"
            />

    </android.support.constraint.ConstraintLayout>

</android.support.constraint.ConstraintLayout>

例子2:直接設置文本A的最小寬高,設置文本B的最大寬高【問題:文本B的展現不符合預期

<?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"
    tools:context=".MainActivity"
    android:padding="8dp"
    >
    <TextView
        android:id="@+id/textA"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:minWidth="100dp"
        android:minHeight="40dp"
        android:text="文本A"
        android:background="#ffb300"
        />

    <TextView
        android:id="@+id/textB"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:maxWidth="100dp"
        android:maxHeight="40dp"
        android:text="文本B文本B文本B文本B\n文本B文本B文本B文本B\n文本B文本B文本B文本B"
        android:background="#b7ff00"
        app:layout_constraintLeft_toRightOf="@id/textA"
        />

</android.support.constraint.ConstraintLayout>

例子3:按鈕A設置最小寬高,按鈕B設置最大寬高(註意:Button控制項系統預設設置了最小寬高:比如寬88dp,高48dp,去style.xml中AppTheme的父主題裡面查看)

<?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"
    tools:context=".MainActivity"
    android:padding="8dp"
    >
    <Button
        android:id="@+id/buttonA"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:minWidth="100dp"
        android:minHeight="60dp"
        android:text="按鈕A"
        android:background="#ffb300"
        />

    <Button
        android:id="@+id/buttonB"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:maxWidth="100dp"
        android:maxHeight="60dp"
        android:text="按鈕B按鈕B按鈕B按鈕B按鈕B按鈕B按鈕B按鈕B按鈕B按鈕B按鈕B按鈕B"
        android:background="#b7ff00"
        app:layout_constraintLeft_toRightOf="@id/buttonA"
        />

</android.support.constraint.ConstraintLayout>

7.2、控制項尺寸約束【Widgets dimension constraints】

我們可以通過以下3種不同方式設置android:layout_width和android:layout_height屬性值指定控制項的尺寸。

  • 使用指定數值(例如52dp或@dimens/toolbarheight);
  • 使用wrap_content,這將要求控制項自己計算自己的大小;
  • 使用0dp,相當於match_constraint(在1.1.3版本中,使用match_constraint找不到,所以還是使用0dp,註意不能使用match_parent,有些地方0dp和match_parent是不一樣的

上圖中,(a)是wrap_content,(b)是0dp,如果設置了邊距,則在計算中將考慮它們(圖8,(c)中的0dp。

重要提示: match_parent不建議用於ConstraintLayout中的控制項。可以通過使用match_constraint設置為相應的left/right或top/bottom 約束來定義類似的行為——"parent"。

但是在com.android.support.constraint:constraint-layout:1.1.3中,android:layout_width和android:layout_height屬性沒有這個match_constraint值。

7.3、wrap_content:強制約束(在1.1中添加)【WRAP_CONTENT : enforcing constraints (Added in 1.1)】

如果將維度設置為WRAP_CONTENT,則在1.1之前的版本中,它們將被視為文字維度 - 這意味著約束不會限制生成的維度。雖然通常這足夠(並且更快),但在某些情況下,您可能希望使用WRAP_CONTENT,但仍然強制執行約束以限制生成的維度。在這種情況下,您可以添加一個相應的屬性:

  • app:layout_constrainedWidth=”true|false”【預設false】
  • app:layout_constrainedHeight=”true|false”【預設false】

例子1:文本B在文本A的下方,並且文本B的左側約束文本A的右側,文本B的右側約束parent的右側(這樣可以保證文本全部顯示出來)

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

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • iOS打包報錯信息如下:Sign in with the app-specific password you generated. If you forgot the app-specific password or need to create a new one, go to appleid.a ...
  • QCC3026是一款基於超低功耗架構的入門級快閃記憶體可編程藍牙音頻SoC,專為緊湊型功能優化的Qualcomm TrueWireless耳塞而設計。QCC3026旨在為我們的客戶提供有助於縮短開發時間並具有成本效益的解決方案。 QCC3026晶元特征:與QCC512x相同的低功耗性能針對Qualcomm ...
  • 預設關閉定位和GPS 修改位置 frameworks/base/packages/SettingsProvider/res/values/defaults.xml network,gps 修改為 預設省電 修改位置 com/android/settings/location/LocationSett ...
  • 驍龍700系列是高通公司的中高端晶元組系列,該系列包括10nm驍龍710和驍龍712 SoC;以及8nm驍龍730和驍龍730G SoC。最新消息顯示,高通公司正在開發一款新的7nm晶元組,將被稱為驍龍735。 據稱,驍龍735將採用跟驍龍855相同的7nm工藝,這意味著功率效率將高於之前8nm的驍 ...
  • 首先說一下項目背景,公司最近在做一個移動平臺APP的開發,貼向於游戲方向,用戶量也相對較大,加上項目中幾個功能排期比較趕,導致開發中出來了不少問題,主要問題就是APP運行過程中的奔潰、卡頓、異常等問題。之前老的定位手段效率很低,有的問題需要定位一兩天才能解決,確實影響了用戶體驗。後來在帖子上發現了幾 ...
  • 1. 小程式的優缺點優點:不需下載、卸載 使用方便缺點:嵌套在微信中,屬於微信的子應用2. 使用的技術實際上是Hybrid技術的應用Hybrid App (混合模式移動應用),使用網頁語言和程式語言共同開發小程式兼具了Native App所有優勢,也兼具了Web App使用Html5跨平臺開發低成本 ...
  • 1.1 屏幕 移動設備與PC設備最大的差異在於屏幕,這主要體現在屏幕尺寸和屏幕解析度兩個方面。 通常我們所指的屏幕尺寸,實際上指的是屏幕對角線的長度(一般用英寸來度量)如下圖所示 而解析度則一般用像素來度量 px,表示屏幕水平和垂直方向的像素數,例如1920*1080指的是屏幕垂直方向和水平方向分別 ...
  • 首先我們來看看運行之後的效果: 然後我們也不多說廢話了,下麵是這個項目所需要的全部代碼,很多博主寫這個都不把代碼寫完,因此筆者自己也琢磨了一會兒才把這個弄出來,感覺很煩,但我肯定會把代碼寫全的。我這裡一共引入了三個界面,三個佈局的xml我都會寫的。 1.MainActivity.java 2.Myp ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...