微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Android - 方形视图占用所有可用空间

如何解决Android - 方形视图占用所有可用空间

我正在尝试制作一个布局,该布局将在方形视图的正下方有一个方形视图 (A) 和另一个具有恒定高度 (B) 的视图。视图 A 应该尽可能多地展开可见,但两个视图都必须完全可见。额外的空间应位于两侧或视图 B 下方(取决于屏幕尺寸)。

我尝试使用约束布局 (app:layout_constraintDimensionRatio="1:1"),但没有成功。

Portrait

Landscape

有什么想法吗?

解决方法

这将完成您的工作,将指南中的百分比更改为您想要将它们分成多少空间。

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_height="match_parent"
android:layout_width="match_parent">

<LinearLayout

    android:id="@+id/LinearLayoutA"
    android:layout_height="0dp"
    android:layout_width="0dp"
    android:orientation="vertical"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintBottom_tTopOf="@id/guidelinev1"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent">


//Put your textViews here

</LinearLayout>

<LinearLayout

    android:id="@+id/ LinearLayoutB"
    android:layout_height="0dp"
    android:layout_width="0dp"
    android:orientation="vertical"
    app:layout_constraintTop_toBottompOf="@id/guidelinev1"
    app:layout_constraintBottom_toBottomOf ="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent">


//Put your textViews here

</LinearLayout>

<androidx.constraintlayout.widget.Guideline
    android:id="@+id/guidelinev1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    app:layout_constraintGuide_percent="0.6"/>


</androidx.constraintlayout.widget.ConstraintLayout>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。