有没有办法找到drawable的资源ID

时间:2011-07-07 17:59:37

标签: android resources drawable

有没有办法获得Drawable资源ID?例如,我使用的是ImageView,我最初可能会使用icon.png作为其图像,但稍后我可能会将图像更改为icon2.png。我想找出使用​​ImageView正在使用的图像资源的代码。有什么办法吗?

7 个答案:

答案 0 :(得分:14)

当你在ur prgoram中点击ImageView时,这个是查找R.drawablw.image1值的最佳方法。该方法有点像 在主程序中首先保存标签中的图像值

public...activity 
{
//-----this vl store the drawable value in Tag of current ImageView,which v vl retriew in //image ontouchlistener event...
ImageView imgview1.setTag(R.drawable.img1);
ImageView imgview2.setTag(R.drawable.img2);

onTouchListnener event...
{

  ImageView imageView = (ImageView) v.findViewById(R.id.imgview1)v;
  Object tag = imageView.getTag();                  
  int id = tag == null ? -1 : Integer.parseInt(tag.toString());
switch(id)
{
case R.drawable.img1:
//do someoperation of ur choice
break;
case R.drawable.img2:
//do someoperation of ur choice
break:
    }//end of switch

 }//end of touch listener event

  }//end of main activity

               "PIR FAHIM SHAH/kpk uet mardan campus"

答案 1 :(得分:6)

您是否正在尝试确定imageview当前图像的内容,以便将其更改为其他图像?

如果是这样,我建议使用代码而不是xml来做所有事情。

即。使用setImageResource()在初始化期间设置初始图像,并跟踪代码中某处使用的resource ids

例如,您可以拥有一个imageviews数组,其中包含int的相应数组,其中包含每个resource id的{​​{1}}

然后,每当您想要更改图像时,循环遍历数组并查看id是什么。

答案 2 :(得分:5)

创建自定义imageview,其余的很简单。

Print

答案 3 :(得分:0)

这有几个步骤:

  1. 创建整数数组xml以保存drawable的名称(即:“@ drawable / icon1”......“@ drawable / iconN”

  2. 使用上面的getIdentifier获取“数组”

  3. 带有drawable列表的ID,getStringArray将为您提供在步骤1中指定的drawable的数组名称。

  4. 然后再次使用数组中的任何可绘制名称和getIdentifier来获取可绘制ID。这使用“drawable”而不是“array”类型。

  5. 使用此ID为您的视图设置图片。

  6. HOpe这会有所帮助。

答案 4 :(得分:0)

我现在认为问题已经很久了,但也许有人会发现它很有用。

我有一个带有Drawables的TextViews列表,并希望在更改布局时为所有这些设置单击侦听器,而无需更改代码。

所以我把所有drawable都放到了一个hashmap中以便以后获取它们的ID。

<强> main_layout.xml

<LinearLayout android:id="@+id/list" >

    <TextView android:drawableLeft="@drawable/d1" />
    <TextView android:drawableLeft="@drawable/d2" />
    <TextView android:drawableLeft="@drawable/d3" />
    <TextView android:drawableLeft="@drawable/d4" />
    <!-- ... -->
</LinearLayout>

<强> MyActivity.java

import java.lang.reflect.Field;
import java.util.HashMap;

import android.app.Activity;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.Drawable.ConstantState;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.LinearLayout;
import android.widget.TextView;

public class MyActivity extends Activity {

    private final HashMap<ConstantState, Integer> drawables = new HashMap<ConstantState, Integer>();

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

        setContentView(R.layout.main_layout);

        for (int id : getAllResourceIDs(R.drawable.class)) {
            Drawable drawable = getResources().getDrawable(id);
            drawables.put(drawable.getConstantState(), id);
        }

        LinearLayout list = (LinearLayout)findViewById(R.id.list);

        for (int i = 0; i < list.getChildCount(); i++) {

            TextView textView = (TextView)list.getChildAt(i);       
            setListener(textView);

        }
    }

    private void setListener(TextView textView) {

        // Returns drawables for the left, top, right, and bottom borders.
        Drawable[] compoundDrawables = textView.getCompoundDrawables();

        Drawable left = compoundDrawables[0];

        final int id = drawables.get(left.getConstantState());

        textView.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View view) {

                Intent broadcast = new Intent();

                broadcast.setAction("ACTION_NAME");

                broadcast.putExtra("ACTION_VALUE", id);

                sendBroadcast(broadcast);
            }
        });
    }

    /**
     * Retrieve all IDs of the Resource-Classes
     * (like <code>R.drawable.class</code>) you pass to this function.
     * @param aClass : Class from R.X_X_X, like: <br>
     * <ul>
     * <li><code>R.drawable.class</code></li>
     * <li><code>R.string.class</code></li>
     * <li><code>R.array.class</code></li>
     * <li>and the rest...</li>
     * </ul>
     * @return array of all IDs of the R.xyz.class passed to this function.
     * @throws IllegalArgumentException on bad class passed.
     * <br><br>
     * <b>Example-Call:</b><br>
     * <code>int[] allDrawableIDs = getAllResourceIDs(R.drawable.class);</code><br>
     * or<br>
     * <code>int[] allStringIDs = getAllResourceIDs(R.string.class);</code>
     */
    private int[] getAllResourceIDs(Class<?> aClass) throws IllegalArgumentException {
            /* Get all Fields from the class passed. */
            Field[] IDFields = aClass.getFields();

            /* int-Array capable of storing all ids. */
            int[] IDs = new int[IDFields.length];

            try {
                    /* Loop through all Fields and store id to array. */
                    for(int i = 0; i < IDFields.length; i++){
                            /* All fields within the subclasses of R
                             * are Integers, so we need no type-check here. */

                            // pass 'null' because class is static
                            IDs[i] = IDFields[i].getInt(null);
                    }
            } catch (Exception e) {
                    /* Exception will only occur on bad class submitted. */
                    throw new IllegalArgumentException();
            }
            return IDs;
    }

}

方法 getAllResourceIDs 我用过here

答案 5 :(得分:0)

另一种方法:您只需创建自己的自定义视图。和onCreate。然后迭代AttributeSet对象(attrs)以查找属性的索引。然后只需使用索引调用getAttributeResourceValue,然后您将获得初始ResouceID值。扩展ImageView以获取背景资源ID的简单示例:

public class PhoneImageView extends ImageView {

    private static final String BACKGROUND="background";
    private int imageNormalResourceID;

    public PhoneImageView(Context context) {
        super(context);
    }

    public PhoneImageView(Context context, AttributeSet attrs) {
        super(context, attrs);
        for (int i = 0; i <attrs.getAttributeCount() ; i++) {
            if(attrs.getAttributeName(i).equals(BACKGROUND)){
                imageNormalResourceID =attrs.getAttributeResourceValue(i,-1);
            }
        }
    }

    public PhoneImageView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }


}

这种方法适合谁想要存储初始值.Bojan Kseneman提供的解决方案(+1票)用于在视图发生变化时保持对resourceID的引用。

答案 6 :(得分:-4)

您可以通过以下代码获取图像的ID。

int drawableImageId = getResources().getIdentifier(imageName,"drawable", getPackageName());