Android resources என்பது ஒரு செயலியின் குறியீடு அல்லாத சொத்துக்கள் — தளவுருபடுத்தல்கள், சரங்கள், படங்கள், வண்ணங்கள், பரிமாணங்கள் — 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.
