значок закрытия в правом верхнем углу изображения в андроид студии - PullRequest
0 голосов
/ 25 декабря 2018

Я хочу сделать значок закрытия над изображением в Adroid Studio. Вот макет, который необходимо сделать Вот крестик от значка закрытия над картой

вот мой код:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#edf1f4"
    android:orientation="vertical">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="34dp">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="fill"
            android:layout_marginTop="12dp"
            android:src="@drawable/paymentcard" />

        <LinearLayout
            android:id="@+id/buttonclose"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="top|right"
            android:orientation="horizontal">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Удалить"
                android:textSize="17sp" />

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="right"
                android:src="@drawable/deletebutton_icon" />
        </LinearLayout>
    </FrameLayout>
</LinearLayout> 

, но есть проблема с пропорцией: при отображении на другом экране плотности плотное смещение увеличивается, так как я могу добиться наилучшего результата?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...