我有一个由ImageView
和TextView
组成的布局。我最近将ImageView的android:src
更改为新的drawable,但是当我在模拟器或设备上构建并运行应用程序时,它显示的是旧图像,而不是我在XML Layout中指定的新图像。我不明白为什么引用没有得到更新,并且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>
请帮帮我。
答案 0 :(得分:1)
在这种情况下,我刷新项目文件夹,清理项目。如果这些不起作用,那么我将关闭并打开项目。 Eclipse很多次都很奇怪。
答案 1 :(得分:0)
我犯了一个愚蠢的错误。我还在我的自定义适配器中设置了ImageView图像并覆盖了XML ImageView默认图像。我从适配器中删除了设置图像src的代码,这解决了问题