如何从我的drawable中找到imageview中设置的图像?

时间:2012-03-29 09:12:09

标签: android background-image android-imageview

我需要在drawble文件夹中找到imageview(onview of imageview)中设置的图像。为此,我需要从drawable文件夹中比较drawview的imageview的背景和图像。我找到了一些方法,但在我的情况下,这些都不起作用。

调试此问题时,我发现imageview的一个属性(在imageview上悬停)名为“ mBackgroundResource ”的属性在drawable文件夹中保存了我的图像的相同Integer值。

int i = R.drawable.skype; (2130837526)

Imageview的mBackgroundResource= 2130837526

那么有没有办法获得mBackgroundResource值?所以我可以尝试比较它。谁能帮忙解决这个问题?

这是我的代码。

我在适配器中,

Context mContext;
Drawable skype;

skype = mContext.getResources().getDrawable(R.drawable.skype); // in the constructor of the adapter.

public void onClick(View v)
    {   
        ImageView img = (ImageView)v.findViewById(R.id.img_call_icon);
        Drawable img_id = img.getBackground();
    }

现在我试过了......(我错过了哪里?)

/***********************************************************************************/

    if(img_id == skype)
    {
        // Not working...
    }

/***********************************************************************************/
Bitmap bitmap = ((BitmapDrawable)img_id).getBitmap();
Bitmap bitmap1 = ((BitmapDrawable)skype).getBitmap();

if(bitmap == bitmap1)
{
    // Not working...
}
/***********************************************************************************/
Object tag = img.getTag();
int i = R.drawable.skype;

if(tag != null && ((Integer)tag).intValue() == i)
{
   // Not working...
}
/***********************************************************************************/
int j = ((Integer)tag).intValue() ; // always return 0..
int i = R.drawable.skype;

if(i == j)
{
   // Not working...
}
/***********************************************************************************/
Boolean b = img_id.equals(skype); // return FALSE, Not working...
/***********************************************************************************/
ImageView imageView = (ImageView)v.findViewById(R.id.img_call_icon);
assert(i == imageView.getId());
Integer integer = (Integer) imageView.getTag(); // always fill with null...
integer = integer == null ? 0 : integer;
   switch(integer) 
   {
   case R.drawable.skype:
       Toast.makeText(mContext, "skype", Toast.LENGTH_SHORT).show();
       break;

   case R.drawable.call:
       Toast.makeText(mContext, "call", Toast.LENGTH_SHORT).show();
       break;
   } // Not working...

1 个答案:

答案 0 :(得分:7)

您是否在适配器中设置了ImageView的drawable?

如果是这样,您可以将可绘制的ID保存在View的标签中,如下所示:

ImageView imageView = (ImageView) v.findViewById(R.id.img_call_icon);
imageView.setTag(R.drawable.a_drawable);
imageView.setDrawableResource(R.drawable.a_drawable);

并检查ImageView中的哪个drawable:

ImageView imageView = (ImageView) v.findViewById(R.id.img_call_icon);
Object tag = imageView.getTag();
int id = tag == null ? -1 : (int) tag;
switch(id)
{
case R.drawable.skype:
    Toast.makeText(mContext, "skype", Toast.LENGTH_SHORT).show();
    break;

case R.drawable.call:
    Toast.makeText(mContext, "call", Toast.LENGTH_SHORT).show();
    break;
}