其他分享
首页 > 其他分享> > android – 如何从drawable中找到imageview中设置的图像?

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

作者:互联网

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

在调试这个问题时,我发现一个名为“mBackgroundResource”的imageview(在imageview上悬停)的一个属性在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...

解决方法:

您是否在适配器中设置了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;
}

标签:android,android-imageview,background-image
来源: https://codeday.me/bug/20191002/1841259.html