我正在尝试制作一个包含分层视图的图像(背景颜色的布局也可能很好,因为我只是想在一个正方形中表示一系列数据)。这显示在我的图像中,其中每种颜色都是不同的布局或视图(对不好的绘画技巧很抱歉,假装它们是均匀间隔并对齐的)。为此,我希望使用ConstraintLayout的percent属性,但它们似乎不适用于我...我所能获得的只是最低层的颜色。如何堆叠百分比图层?
下面的代码我想以上述父级的80%分别给我3层?不会。
<android.support.constraint.ConstraintLayout
android:id="@+id/cell_afflictionsAura"
style="@style/CenteredBox"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
android:foregroundGravity="center"
app:layout_constraintWidth_default="spread"
app:layout_constraintHeight_default="spread"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<android.support.constraint.ConstraintLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/colorAccent"
android:foregroundGravity="center"
app:layout_constraintWidth_default="percent"
app:layout_constraintHeight_default="percent"
app:layout_constraintHeight_percent="80%"
app:layout_constraintWidth_percent="80%">
<android.support.constraint.ConstraintLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/solid_black"
app:layout_constraintWidth_default="percent"
app:layout_constraintHeight_default="percent"
android:foregroundGravity="center"
app:layout_constraintHeight_percent="80%"
app:layout_constraintWidth_percent="80%">
</android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:2)
这是可能的,您只需要进行一些更正:
1-用十进制数指定所需的百分比,例如.8
而不是80%
2-您忘记约束子布局的位置:您只是在限制身高和体重。例如,如果要将视图集中在其父视图中,则应向其中添加以下属性:
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
3-最后,在进行了这些更改之后,我相信app:layout_constraintWidth_default="percent"
是不必要的。
因此,您的xml是这样的:
<android.support.constraint.ConstraintLayout
android:id="@+id/cell_afflictionsAura"
style="@style/CenteredBox"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
android:foregroundGravity="center"
app:layout_constraintWidth_default="spread"
app:layout_constraintHeight_default="spread">
<android.support.constraint.ConstraintLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/colorAccent"
android:foregroundGravity="center"
app:layout_constraintHeight_percent=".8"
app:layout_constraintWidth_percent=".8"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent">
<!--Transparent horizontal constraint-->
<android.support.constraint.ConstraintLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/solid_black"
app:layout_constraintHeight_percent=".8"
app:layout_constraintWidth_percent=".8"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent">
</android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>
希望它能起作用!