3

我尝试在定义良好的视图 (XML) 上将 ImageView 显示到我的应用程序中

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activityShowLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#73C310"
android:orientation="vertical"
tools:context=".ShowActivity" >

<ImageView
    android:id="@+id/mainImage"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/moodButton"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_margin="12dp"
    android:background="#000"
    android:src="@drawable/gs_04_pic" />

<!-- ... -->

然后在我对活动的 onCreate 方法中

    @Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_show);

    /* ... blabla bla ... */

    ImageView imageView = (ImageView) findViewById(R.id.mainImage);

    Bitmap bitmap = BitmapFactory.decodeByteArray(cream.getMedia(), 0, cream.getMedia().length);
    Drawable draw = new BitmapDrawable(getResources(), bitmap);
    imageView.setImageDrawable(draw);
    imageView.invalidate();
}

cream.getMedia() 返回一个有效的 byte[] (来自数据库),我可以记录给我:

07-18 17:41:16.812: I/app(9883): byte[] 是: [B@414af0b0

但最后 imageView 是黑色的(上面没有图像)如果我不运行 onCreate 代码,它会显示在 XML 中设置的资源(在 XML 中设置的黑色背景上)

怎么了?

4

2 回答 2

3

我遇到了这个问题,就我而言,问题来自以下配置:

蓝色的.gradle

shrinkResources true

它删除了我的文件,因为我没有对我的资源的静态引用。(在我的情况下的图像)

所以我在这个链接资源收缩中找到了这篇文章“保留资源”

在简历中说:你应该在这个路径“/res/raw/keep.xml”中创建一个文件

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools"
  tools:keep="@layout/l_used*_c,@layout/l_used_a,@layout/l_used_b*"/>
于 2016-03-04T18:34:01.447 回答
0

这可能是因为您试图将较大的位图加载到图像视图中,请在设置之前尝试将其缩小。

于 2018-07-26T08:32:27.857 回答