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

Я получаю другой размер растрового изображения на одном устройстве. Во-первых, я создаю из действия, а другой я создаю из элемента click в recylerview.

Recylerview screen from where I am creating bitmap to share

Здесь у меня рост около 1350.

Ниже приведен снимок экрана с активностью.

Activity Screen[2]

Здесь я получаю растровое изображение высоты около 1425. На том же устройстве moto g4. И я использую тот же класс Java, а также тот же класс XML. Ниже мой xml-код.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:id="@+id/parentLL"
    android:layout_height="wrap_content">

    <RelativeLayout
        android:id="@+id/parentRL"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:orientation="vertical"
        android:padding="10dp"
       >

        <android.support.v7.widget.CardView
            android:id="@+id/cardLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#ffffff"
            card_view:cardCornerRadius="4dp"

            card_view:cardElevation="4dp"
            card_view:cardUseCompatPadding="true">

            <FrameLayout
                android:id="@+id/imageFL"
                android:layout_width="match_parent"
                android:layout_height="300dp">

                <ImageView
                    android:id="@+id/featuredCellImageView"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:scaleType="fitXY"
                    android:src="@drawable/placeholder_default_image" />

                <RelativeLayout
                    android:layout_width="match_parent"

                    android:layout_height="match_parent"
                    android:layout_gravity="center">

                    <ImageView
                        android:id="@+id/featuredCellCentreImageView"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:layout_alignParentLeft="true"
                        android:layout_alignParentTop="true"
                        android:layout_marginLeft="2dp"
                        android:layout_marginTop="2dp"
                        android:adjustViewBounds="true"
                        android:scaleType="fitCenter"
                        android:src="@drawable/placeholder_default_image" />
                </RelativeLayout>

                <RelativeLayout
                    android:id="@+id/topBannerRL"
                    android:layout_width="match_parent"
                    android:layout_height="80dp"
                    android:layout_gravity="top"
                    android:background="#90000000">

                    <ImageView
                        android:id="@+id/logoIV"
                        android:layout_width="120dp"
                        android:layout_height="40dp"
                        android:layout_margin="15dp"
                        android:src="@drawable/splash_text" />
                </RelativeLayout>
            </FrameLayout>
        </android.support.v7.widget.CardView>

        <LinearLayout
            android:id="@+id/rl_title"
            android:layout_below="@+id/cardLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="2dp"

            android:background="#ffffff"
            android:orientation="vertical">

            <TextView
                android:id="@+id/featuredCellTitle"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="2dp"
                android:ellipsize="end"
                android:maxLines="3"
                android:padding="2dp"
                android:textColor="#000000"
                android:textSize="20sp" />

            <TextView
                android:id="@+id/description"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="5dp"
                android:layout_marginTop="5dp"
                android:layout_marginRight="5dp"
                android:ellipsize="end"
                android:maxLines="6"
                android:textColor="#000000"
                android:textSize="14sp" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:visibility="visible"
                android:id="@+id/logosLL"
                android:gravity="center|right">

                <ImageView
                    android:id="@+id/imageView"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"

                    android:layout_marginRight="4dp"
                    android:src="@drawable/ios_app_store" />

                <ImageView
                    android:id="@+id/playIV"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginRight="4dp"
                    android:src="@drawable/google_play" />
            </LinearLayout>
        </LinearLayout>
    </RelativeLayout>
</LinearLayout>

Ниже logoLL linearlayout создание проблемы. когда я не использую его, тогда я получаю одинаковую высоту растрового изображения в обоих случаях.

1 Ответ

0 голосов
/ 31 октября 2018

изменение

android:layout_height="wrap_content"

до

android:layout_height="match_parent"

в вашем логотипеLL линейный макет

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