0

我有一个由 aImageView和 a组成的布局TextView。我最近将android:srcImageView 更改为新的可绘制对象,但是当我在模拟器或设备上构建和运行应用程序时,它会显示旧图像而不是我在 XML 布局中指定的新图像。我不明白为什么引用没有更新,而 android 正在使用图像的旧引用。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/list_selector"
    android:orientation="horizontal"
    android:padding="3dip" >

    <ImageView
        android:id="@+id/playImage"
        android:layout_width="35dip"
        android:layout_height="35dip"
        android:src="@drawable/play_icon" />

    <TextView
        android:id="@+id/playlistName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:textColor="@color/black"
        android:maxLines="1"
        android:layout_toRightOf="@+id/playImage"
        android:paddingLeft="5dp"
        android:textStyle="bold"
        android:text="Unamed" />
 </RelativeLayout>

请帮我。

4

2 回答 2

1

在这种情况下,我刷新项目文件夹,清理项目。如果这些不起作用,那么我将关闭并打开项目。Eclipse 多次表现得很奇怪。

于 2012-11-02T08:33:44.127 回答
0

我犯了一个愚蠢的错误。我还在自定义适配器中设置 ImageView 图像,这覆盖了 XML ImageView 默认图像。我从适配器中删除了设置图像 src 的代码,这解决了问题

于 2012-11-02T08:57:29.277 回答