resources ของ Android คือทรัพยากรที่ไม่ใช่โค้ดของแอป ได้แก่ layouts, strings, images, colors, dimensions ซึ่งเก็บ แยกจากโค้ด ในไดเรกทอรี res/ การแยกนี้ช่วยสนับสนุนความง่ายในการดูแลรักษา การแปลภาษา และการปรับให้เข้ากับอุปกรณ์และการกำหนดค่าต่าง ๆ
resources คืออะไร
Resources = app assets kept separate from code in res/:
res/layout/ → XML layout files (UI definitions)
res/values/ → strings.xml, colors.xml, dimens.xml, styles.xml
res/drawable/ → images, vector graphics, shapes
res/mipmap/ → app launcher icons
res/font/ → fonts
→ referenced in code as R.string.app_name, R.layout.activity_main, R.drawable.logo, etc.
