what is Create UI Controls in hindi-ui कण्ट्रोल क्या है?

हेल्लो दोस्तों आज के इस पोस्ट में आपको Create UI Controls in hindi व्क्या है कैसे काम करता है तो चलिए शुरू करते है।

नियंत्रण बनाएँ (Create ULControls)

इनगुट नियंत्रण आपके ऐप के user इंटरफ़ेस में इंटरैक्टिव घटक हैं। Android आप के UI में उपयोग किए जाने वाले विभिन्न प्रकार के नियंत्रण प्रदान करता है, जैसे बटन, टेक्स्टफ़ील्ड, बार, चेकबॉक्स, जूमबटन, टॉगल बटन, और कई अन्य।

एक view object में एक अद्वितीय आईडी निर्दिष्ट हो सकती है जो tree के भीतर दृश्य को विशिष्ट रूप से पहचान लेगी। XML टैग के अंदर ID के लिए सिंटैक्स है।

android:id="@+id/text_id"

UI Control/View/Widget बनाने के लिए आपको लेआउट फ़ाइल में एक view/widget को परिभाषित करना होगा और इसे एक अद्वितीय आईडी के रूप में निर्दिष्ट करना होगा :

इसे भी जाने –

  • what is android Progress bar in hindi-प्रोग्रेसबार क्या होता है?
  • what is android check box in hindi-चेक बॉक्स क्या होता है ?
  • what is android image button in hindi-इमेज बटन क्या है?
  • what is android Edit Text in hindi-एडिट टेक्स्ट क्या होता है ?
  • what is android Radio Button in hindi-एंड्राइड रेडियो बटन क्या है?
  • what is android button in hindi-बटन क्या होता है ?
<?xml version= "1.0" encoding="utf-8" ?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:orientation="vertical" >
<TextView android:id="@+id/text_id”
android:layout_width="wrap_content" 
android:layout_height="wrap_content”
android: text="I am a Textview" /> 
</LinearLayout>

फिर अंत में कण्ट्रोल का एक example बनाये और इसे layout से कैप्चर करें, निम्नलिखित का

TextView myText = (TextView) findViewById(R.id.text_id);

reference-https://www.tutorialspoint.com/android/android_user_interface_controls.htm

निवेदन :-अगर आपको यह आर्टिकल(Create UI Controls in hindi) उपयोगी लगा हो तो इस आप अपने क्लासमेट ,दोस्तों  के साथ अवश्य share कीजिये और आपके जो भी इस पोस्ट्स से related() questions() है तो आप उन्हें निचे कमेंट कर सकते है हम उसके  answer अवश्य करेंगे Thank

Leave a Comment