আমি অ্যান্ড্রয়েডে নিয়মিত বোতামগুলির জন্য রেডিওবটন প্রভাব পেতে চেষ্টা করছি
আমার নীচে একটি সহজ অ্যান্ড্রয়েড রেডিও বোতাম আছে
এর জন্য কোডটি হল ::
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<RadioButton
android:id="@+id/radio0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="RadioButton1" />
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton2" />
<RadioButton
android:id="@+id/radio2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton3" />
</RadioGroup>
</RelativeLayout>
এটি নীচের হিসাবে কীভাবে কাস্টমাইজ করবেন:
ধন্যবাদ !
[সম্পাদনা] উত্তরের একটি থেকে কোড ব্যবহার করে
তবে বাটনটির নামটি কীভাবে অপসারণ করবেন তা নির্বাচন বিকল্প দ্বারা ছায়া?
{সম্পাদনা করুন} আরও পরিবর্তন
ফাইনাল পরিবর্তনগুলি অন্ততপক্ষে আমার জানা উচিত যে আমি তিনটি রেডিও বোতামের মধ্যে কোন বোতামটি নির্বাচন করেছি .... নীচের হিসাবে পাওয়া কি সম্ভব?