【发布时间】:2021-11-01 02:56:25
【问题描述】:
我试图在我的片段中改变根约束布局的形状。 如下图所示,将我的关闭按钮放在右上角。在安卓中可以吗? constraintlayout shape image
【问题讨论】:
-
请提供足够的代码,以便其他人更好地理解或重现问题。
标签: java android kotlin android-fragments android-constraintlayout
我试图在我的片段中改变根约束布局的形状。 如下图所示,将我的关闭按钮放在右上角。在安卓中可以吗? constraintlayout shape image
【问题讨论】:
标签: java android kotlin android-fragments android-constraintlayout
是的,这是可能的,只是父约束布局的背景为白色。这是产生与图像完全相同的输出的工作代码:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:paddingLeft="10dp"
android:paddingTop="10dp"
android:paddingRight="10dp"
android:paddingBottom="10dp">
<RelativeLayout
android:id="@+id/cross"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ff0000"
android:padding="10dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/ic_baseline_clear_24" />
</RelativeLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/dostuff"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#ff0000"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cross">
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
【讨论】: