Android将布局限制为另一个

时间:2019-05-31 08:27:34

标签: android android-constraintlayout

所以基本上我有一个ImageView。我想约束一个文本视图,让它在其中心说。我真的不能为此使用一个准则,因为准则适用于整个页面。有什么想法吗?

欢呼

2 个答案:

答案 0 :(得分:0)

使用

app:layout_constraintTop_toBottomOf="@id/item_i_want_to_be_in_center_of"
app:layout_constraintBottom_toTopOf="@+id/item_i_want_to_be_in_center_of"

答案 1 :(得分:0)

这是您想要的吗?

<div *ngFor="let order of orders" class="order">
  <div *ngFor="let product of order.products" class="orders">
    <div class="row">
      <div class="col-4 col-md-2">
        <a routerLink="/order/{{ order.id }}">
          <img src="http://localhost:3030/{{ product.product.image }}" alt="image" class="img-fluid img-thumbnail">
        </a>
      </div>
      <div class="col-5 col-md-8">
        <h5>
          <a routerLink="/orders/{{ order.id }}">{{ product.product.title }}</a>
          <p class="m-0">
            <small class="text-muted">{{ product.product.category }}</small>
          </p>
        </h5>
      </div>
      <div class="col-2">
        <h6 class="font-weight-bold text-danger">{{ order.totalPrice | currency }}</h6>

      </div>
    </div>
  </div>
  <hr>
</div>

enter image description here