উদাহরণে আসার আগে, আমাদের জানা উচিত, অ্যান্ড্রয়েডে রেডিও গ্রুপ কী। রেডিও গ্রুপে রেডিও বোতামের গ্রুপ রয়েছে। রেডিও বোতাম ব্যবহার করে আমরা ব্যবহারকারীর প্রয়োজনীয়তা অনুযায়ী নির্বাচন এবং আন সিলেক্ট করতে পারি।
অ্যান্ড্রয়েডে রেডিও গ্রুপ কীভাবে ব্যবহার করতে হয় সে সম্পর্কে এই উদাহরণটি প্রদর্শন করে।
ধাপ 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:app="https://schemas.android.com/apk/res-auto" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:orientation="vertical" tools:context=".MainActivity"> <TextView android:id="@+id/result" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Select your favourite subject" android:textSize="20sp" android:padding="10dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> <RadioGroup android:id="@+id/radioGroup" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp"> <RadioButton android:id="@+id/adroid" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Android"/> <RadioButton android:id="@+id/java" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="java"/> <RadioButton android:id="@+id/cpp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="CPP"/> <RadioButton android:id="@+id/clan" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="C Programming"/> </RadioGroup> <Button android:id="@+id/buton" android:text="ok" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
উপরের কোডে এটিতে চারটি রেডিও বোতাম রয়েছে, ব্যবহারকারী বোতামটিতে ক্লিক করলে এটি চেক করা রেডিও বোতামের পাঠ্য পাবে।
ধাপ 3 − src/MainActivity.java
-এ নিম্নলিখিত কোড যোগ করুনimport android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.text.util.Linkify; import android.view.View; import android.widget.Button; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.TextView; import android.widget.Toast; public class MainActivity extends AppCompatActivity { RadioButton radioButton; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final Button button=findViewById(R.id.buton); final RadioGroup radioGroup=findViewById(R.id.radioGroup); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { int clickedRadioButton=radioGroup.getCheckedRadioButtonId(); radioButton=findViewById(clickedRadioButton); if(clickedRadioButton ==-1){ button.setError("Error"); } else { button.setError(null); Toast.makeText(MainActivity.this,radioButton.getText(),Toast.LENGTH_LONG).show(); } } }); } }
ধাপ 5 − manifest.xml পরিবর্তন করার দরকার নেই চলুন আপনার অ্যাপ্লিকেশন চালানোর চেষ্টা করি। আমি ধরে নিচ্ছি আপনি আপনার কম্পিউটারের সাথে আপনার আসল অ্যান্ড্রয়েড মোবাইল ডিভাইসটি সংযুক্ত করেছেন৷ অ্যান্ড্রয়েড স্টুডিও থেকে অ্যাপটি চালাতে, আপনার প্রোজেক্টের অ্যাক্টিভিটি ফাইলগুলির একটি খুলুন এবং টুলবার থেকে রান আইকনে ক্লিক করুন। একটি বিকল্প হিসাবে আপনার মোবাইল ডিভাইস নির্বাচন করুন এবং তারপরে আপনার মোবাইল ডিভাইসটি পরীক্ষা করুন যা আপনার ডিফল্ট স্ক্রীন প্রদর্শন করবে -
যে কোনো বিষয় নির্বাচন করুন, উদাহরণ হিসেবে আমরা নিচে দেখানো জাভা নির্বাচন করেছি -
এখন রেডিও গ্রুপ থেকে নির্বাচিত রেডিও বোতামের পাঠ্য পেতে ঠিক আছে বোতামে ক্লিক করুন।
উপরের ফলাফলে আমরা ঠিক আছে বাটন নির্বাচন করেছি, এটি নির্বাচিত রেডিও বোতাম পাঠ্যের টোস্ট দেখাবে।