如何访问RES /绘制/"文件夹"文件夹、RES、QUOT

由网友(乄 傻瓜先生)分享简介:在我的应用程序有很多,我都分为文件夹下RES /绘制的图片。但是Android忽略了最低,让我进入他们药谷R。有没有一种方法来访问这些文件夹。On my application I have many pictures which I have grouped in folder under res/drawable...

在我的应用程序有很多,我都分为文件夹下RES /绘制的图片。但是Android忽略了最低,让我进入他们药谷R。有没有一种方法来访问这些文件夹。

On my application I have many pictures which I have grouped in folder under res/drawable. But Android dosen't let me access them trough "R". Is there a way to access those folders.

这是使用为code IM。

This is the Code im using for.

    ImageView iv = new ImageView(conext);
    iv.setImageResource(R.drawable.**smiley.666**);

标志着我,我不能访问的部分。

I marked the part which I can't access.

THX提前

野生动物园

推荐答案

没有,安卓不允许在 / RES /绘制子文件夹:Can Android的绘制目录包含子目录?

No, Android does not allow subfolders under /res/drawable: Can The Android drawable directory contain subdirectories?

您可以但是,添加所有图像文件在 /绘制,然后通过访问这些编程方式:

You can however, add all image files under /drawable and then access them programmatically via:

int drawableID = context.getResources().getIdentifier("drawableName", "drawable", getPackageName());
iv.setImageResource(drawableID);

其中, drawableName 是绘制文件的名称,即 MYIMAGE 如果图像文件 myimage.jpg

Where drawableName is a name of the drawable file, i.e. myimage if image file is myimage.jpg.

在code以上将获得id为图像资源 R.drawable.drawableName

The code above will get image resource with id R.drawable.drawableName.

阅读全文

相关推荐

最新文章