当前位置: 首页 > 知识库问答 >
问题:

Android Jellybean设备上的Recyler视图中不可见壁画图像

居星阑
2023-03-14

在Android Jellybean设备的RecolyerView中使用fresco时,加载图像时会出现一条细线,图像不可见,但在KitKat+设备上也是如此。

三星-4.1.1-API 16-768 X 1280

SamsungGalaxyNote2-4.3-API 18-720 X 1280

            if (newsModelStoreList.get(position-1).getImageUrl() != null) {
            String imageUrl = newsModelStoreList.get(position-1).getImageUrl();
            String extension=".jpg";
            try {
                extension = imageUrl.substring(imageUrl.lastIndexOf("."));
            }
            catch (Exception e)
            {

            }

            Log.d("extension: ",extension);
            if(extension.equals(".gif")) {
                Log.d("Detected Gif: ", "Starting gif controller");
                DraweeController controller = Fresco.newDraweeControllerBuilder()
                        .setUri(Uri.parse(imageUrl))
                        .setAutoPlayAnimations(true)
                .build();
                myHolder.newsImage.setController(controller);

            }
            else
            {
                myHolder.newsImage.setImageURI(Uri.parse(imageUrl));
            }

        }
    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/feed_bg"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@drawable/bg_parent_rounded_corner"
        android:layout_marginTop="@dimen/feed_item_margin"
        android:orientation="vertical"
        android:paddingBottom="@dimen/feed_item_padding_top_bottom"
        android:paddingTop="@dimen/feed_item_padding_top_bottom" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:gravity="right"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/timestamp"
                android:gravity="right"
                android:paddingRight="10dp"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="posted 5 min ago"
                android:textColor="@color/timestamp"
                android:textSize="@dimen/feed_item_timestamp" />

        </LinearLayout>

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:id="@+id/newsTitle"
            android:textSize="22dp"
            android:clickable="false"
            android:textStyle="bold"
            android:paddingLeft="@dimen/feed_item_status_pad_left_right"
            android:paddingRight="@dimen/feed_item_status_pad_left_right"
            android:textColor="@color/black"
            android:textColorLink="@color/com_facebook_blue"
            android:layout_marginBottom="5dp"
            android:paddingBottom="5dp"
            />

       <TextView
            android:id="@+id/newsInformation"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:paddingBottom="5dp"

            android:textColor="@color/black"
            android:textColorLink="@color/com_facebook_blue"
            android:paddingLeft="@dimen/feed_item_status_pad_left_right"
            android:paddingRight="@dimen/feed_item_status_pad_left_right"
            android:paddingTop="@dimen/feed_item_status_pad_top" >


           </TextView>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/viewMore" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_gravity="right"
            android:layout_height="wrap_content">

        </LinearLayout>

此处使用SimpleDraweeView...

        <com.facebook.drawee.view.SimpleDraweeView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:visibility="visible"
            android:adjustViewBounds="true"
            android:id="@+id/newsImage"/>

xml的其余部分仅供参考,以备不时之需

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="@dimen/pad_5dp">

            <TextView
                android:id="@+id/awesomeness"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="@color/timestamp"
                android:text="Awesomeness: "
                android:textSize="@dimen/feed_item_timestamp" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/awesomenessCountNumber"
                android:text="0"
                android:textColor="@color/timestamp"
                android:textSize="@dimen/feed_item_timestamp"/>

        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:paddingTop="@dimen/pad_5dp"
            android:layout_marginLeft="@dimen/pad_5dp"
            android:layout_marginRight="@dimen/pad_5dp">

            <Button
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:id="@+id/awesomeButton"
                android:layout_marginRight="8dp"
                android:background="@drawable/awesome_button_2"/>

            <Button
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:id="@+id/facebookSharePost"
                android:layout_marginRight="8dp"
                android:background="@drawable/facebook_icon"
                />

            <Button
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:id="@+id/whatsApp"
                android:background="@drawable/whats_app_icon"/>

            <View
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:layout_weight="1"
                />

            <TextView
                android:layout_marginRight="8dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Report"/>

            <Button
                android:layout_marginRight="6dp"
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:id="@+id/report"
                android:background="@drawable/report_empty" />


        </LinearLayout>

    </LinearLayout>

</LinearLayout>

共有1个答案

王宏深
2023-03-14

关于你做错了什么的猜测:

  • 您正在使用wrap_content.壁画不支持此功能,除非您还提供了壁画:viewaspectratio。请参阅《付款人指南》和有关wrap_content的更长说明。
  • 您正在使用android:scaletype。这对SimpleDraWeeViews没有影响。您需要使用fresco:actualImageScaleType。还要确保fitxy确实是您想要的;这不能保留纵横比。请参阅有关刻度类型的文档。
 类似资料:
  • 这是我的布局xml的结构: 当我想显示视图时,我使用

  • 我试图在壁画中加载图像,但图像似乎没有加载。当我添加一个占位符视图时,会显示占位符。 注意,我正在应用程序中初始化Fresco,我在清单中确实有internet使用情况。 示例日志 清单

  • 我有一些奇怪的影响,当试图动画视图从消失到可见。见附件gif。 我有一个简单的,它切换的可见性。当更改为可见时,上会出现不希望的类似动画的影响。 我认为这与布局高度有关。请参见下面的布局。 当我删除,并将布局高度更改为时,它工作正常。但这不是解决方案,因为我最终需要一个。 如何避免按钮动画效果? 源代码:

  • 我有一个布局,即MotionLayout,它必须为我定义了motionscene约束集开始和结束的FrameLayouts。并且它们是正确的动画。 然后,在这个动画框架布局下,我添加了两个文本视图,在单击时,我尝试隐藏一个,显示另一个,但两个都保持可见 重写有趣的onViewCreated(View:View,SavedInstanceState:Bundle?){super.onviewcrea

  • 我正在使用Fresco库将图像和GIF加载到我的应用程序中。我遇到的最大的限制是壁画的布局宽度和高度必须设置。因此,我设置了简单的付款人视图,如下所示: 我的问题是,如果图像的高度大于宽度,那么在图像的右边有很多空白(见附件),但是高度是好的 然后它可能发生在高度,如果实际图像小于宽度(见附件),所以这里,因为固定的高度是250dp,有很多空白的图像下面。

  • 我正在开发一个画廊屏幕,允许用户从设备中选择一些图像并发送给另一个用户。我正在使用加载图像,但是根据设备的不同,图像加载非常慢,屏幕上的滚动也很慢。 谁知道怎么解决这个问题? 谢谢!