0
私はConstraint LayoutでImageViewに9Xの等倍サイズのボタンを配置する方法は?
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:adjustViewBounds="true"
android:cropToPadding="false"
android:scaleType="fitXY"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/argentina"
android:layout_marginLeft="16dp"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintVertical_bias="0.501"
android:layout_marginRight="16dp"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp" />
に従うよう制約レイアウト内部ImageViewのを持っていると
予告ImageViewの変化にそのここで示したように、私は9X同じサイズのボタンを使って、このイメージをカバーしたいです制約のレイアウトのサイズ
ありがとうたくさんこれは私がもう1つの質問を探していたものです:ボタン間のギャップ(垂直と水平)を取り除く方法はありますか? !! –
スペースはデフォルトで線形レイアウトでも同じですが、ボタンの背景を設定すると、ボタンの背景とのギャップがカバーされます。 – Pavan
ボタンは後で見ることができません! –