यह उदाहरण दिखाता है कि Android में नज़दीकी आकार कैसे बनाएं।
चरण 1 - एंड्रॉइड स्टूडियो में एक नया प्रोजेक्ट बनाएं, फाइल ⇒ न्यू प्रोजेक्ट पर जाएं और एक नया प्रोजेक्ट बनाने के लिए सभी आवश्यक विवरण भरें।
चरण 2 - निम्न कोड को res/layout/activity_main.xml में जोड़ें।
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:gravity="center" android:layout_marginTop="30dp" tools:context=".MainActivity"> <ImageView android:layout_width="100dp" android:layout_height="100dp" android:background="@drawable/background"/> </LinearLayout>
उपरोक्त कोड में, हमने इमेजव्यू लिया है और बैकग्राउंड को बैकग्राउंड.एक्सएमएल के रूप में जोड़ा है।
चरण 3 - निम्न कोड को drawable/ background.xml में जोड़ें।
<vector xmlns:android="https://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:autoMirrored="true" android:viewportWidth="612" android:viewportHeight="612"> <path android:fillColor="#FF000000" android:pathData="M612,306C612,137.004 474.995,0 306,0C137.004,0 0,137.004 0, 306c0,168.995 137.004,306 306,306C474.995,612 612,474.995 612, 306zM168.3,424.032L286.333,306L168.3,187.967l19.667,-19.667L306, 286.333L424.032,168.3l19.668,19.667L325.667,306L443.7,424.032L424.032, 443.7L306,325.667L187.967,443.7L168.3,424.032z" /> </vector>
आइए अपना एप्लिकेशन चलाने का प्रयास करें। मुझे लगता है कि आपने अपने वास्तविक Android मोबाइल डिवाइस को अपने कंप्यूटर से कनेक्ट कर लिया है। एंड्रॉइड स्टूडियो से ऐप चलाने के लिए, अपने प्रोजेक्ट की गतिविधि फ़ाइलों में से एक खोलें और टूलबार से रन आइकन पर क्लिक करें। एक विकल्प के रूप में अपने मोबाइल डिवाइस का चयन करें और फिर अपने मोबाइल डिवाइस की जांच करें जो आपकी डिफ़ॉल्ट स्क्रीन प्रदर्शित करेगा -