как к изображению смотреть справа от центра просмотра изображения по горизонтали - PullRequest
0 голосов
/ 22 октября 2019

я хочу, чтобы мой макет Android this, но мне трудно макет изображения this

я пытался рисовать пунктир:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
    android:color="@color/colorwhite"
    android:dashWidth="60px"
    android:dashGap="30px"
    android:width="3dp"/>
</shape>

но когда я создаю макет в тексте xml:

<androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <ImageView
            android:id="@+id/img1"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:layout_marginBottom="@dimen/dimen20dp"
            android:background="@drawable/verifikasiemail"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="4dp"
            android:src="@drawable/stripstrip"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintStart_toEndOf="@+id/img1"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"/>
    </androidx.constraintlayout.widget.ConstraintLayout>

и мой результат

this

1 Ответ

0 голосов
/ 22 октября 2019

Просто измените Android: layout_width = "0dp" второго изображения.

...