Android resources
- Get link
- X
- Other Apps
Android resources
- Introduction to android resources in Hindi
- Alternative resources in Hindi
- Supplying android resources in Hindi
- Retrieving android resources in Hindi
- Types of resources in Hindi
Introduction to android resources
जैसा की मैने आपको पहले बताया resources वो files होती है जो आपकी एप्लीकेशन code में include करती है। Resources को application के code से separately maintain किया जाता है। Resources को एप्लीकेशन से separate करने से आप resources को independently maintain कर सकते है।
Resources को आपकी एप्लीकेशन directory के /res folder में maintain किया जाता है। Android studio में /res folder की position निचे दी गयी window में दिखायी गयी है।
/res फोल्डर की sub directories और उनमे maintain किये जाने वाले resource types की लिस्ट निचे दी जा रही है।
Alternative resources
अलग अलग devices की configuration भी अलग अलग होती है। जैसे किसी tablet device की screen size mobile device से बड़ी होती है। इसलिए हर application को अलग अलग device configuration को support करने के लिए alternative resources प्रोवाइड करने चाहिए।
जब आपकी एप्लीकेशन run होती है तो android device configuration को detect कर लेता है और उस device के according resources load कर देता है।
Alternative resources डिफाइन करने के लिए आपको /res फोल्डर में <resources-name>-<config_qualifier> directory क्रिएट करनी होगी।
- Get link
- X
- Other Apps
Comments
Post a Comment