编辑 ImageView 布局以包围可绘制对象
Editing ImageView layout to surround drawable
我有一个布局来显示宽度为 1 do 的虚线可绘制对象。当前布局高度和宽度正在拉伸页面。但我只希望它围绕可绘制图像需要更改什么才能做到这一点?
Current layout
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>
P.S。无需在您的 ImageView 中定义 xmlns!
我有一个布局来显示宽度为 1 do 的虚线可绘制对象。当前布局高度和宽度正在拉伸页面。但我只希望它围绕可绘制图像需要更改什么才能做到这一点? Current layout
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>
P.S。无需在您的 ImageView 中定义 xmlns!