0
我有一個約束佈局內的ImageView如下如何將9X等大小的按鈕放在約束佈局中的ImageView上?
<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,那麼爲什麼你在背景中使用它。 – Pavan
這些按鈕將在以後不可見! –