我想操纵Drawable中的所有图像文件..我已经编写了这段代码。怎么了?
string[] all = System.Reflection.Assembly.GetEntryAssembly().GetManifestResourceNames();
int[] thumbIDs;
foreach (string resourceName in all )
{
int j=1;
if (resourceName.EndsWith(".jpg"))
{
thumbIDs[j]= Resource.Drawable.resourceName;
}
j=j+1;
}