Why can't file names in the drawable folder contain special characters or start with a capital letter?
问题 Is there a point to these rules? 回答1: Each file inside folder is translated into java field name inside R.java class: drawable\icon.png -> R.drawable.icon Hence the reason for not using special characters inside file names, as they can no be used in Java names. As for capital letters, I guess that's to avoid one little problem in Windows vs. Linux environment. That's because Linux thinks that Icon.png and icon.png are different files, and Windows thinks that Icon.png and icon.png is the same