编辑ImageView布局以环绕可绘制内容



我有一个布局来显示一条宽度为1do的虚线。目前布局的高度和宽度正在拉伸页面。但我只想让它围绕着可绘制的图像,需要改变什么才能做到这一点?当前布局

dashes.xml

<ImageView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/dashedVuew"
android:src="@drawable/dashedLine"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="5dp"
android:layout_marginEnd="5dp"
android:layout_gravity="center"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_chainStyle="spread"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

所以您想要一个只有一个ImageView的布局?没有其他视图?

如果是这样,那么根本不需要使用ConstraintLayout!只需将FrameLayout与一个ImageView以及layout_gravity="center"一起使用即可。

<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/dashedVuew"
android:src="@drawable/dashedLine"
android:layout_width="match_parent" // or wrap_content
android:layout_height="wrap_content"
android:layout_gravity="center"/>
</FrameLayout>

附言:没有必要在ImageView中定义xmlns!

相关内容

  • 没有找到相关文章

最新更新