سلام ، من میخوام کار با رادیو باتن رو یاد بگیرم ، این کد رو از سایت اندروید برداشتم اما متاسفانه اکتویتی کامل نیست (به نظرم ساید اندروید باید اکتویتی رو کامل می نوشت !) ، اگر ممکنه کسی اکتویتی رو به شکل کامل تر بنویسه همراه با Import و .. نحوه کار با رویداد Onlcik رادیو باتن رو یاد بگیرم . ممنونم
کد اکتویتی
<?xml version="1.0" encoding="utf-8"?> <RadioGroup xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical"> <RadioButton android:id="@+id/radio_pirates" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/pirates" android:onClick="onRadioButtonClicked"/> <RadioButton android:id="@+id/radio_ninjas" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/ninjas" android:onClick="onRadioButtonClicked"/> </RadioGroup>
کد اکتویتی
public void onRadioButtonClicked(View view) { // Is the button now checked? boolean checked = ((RadioButton) view).isChecked(); // Check which radio button was clicked switch(view.getId()) { case R.id.radio_pirates: if (checked) // Pirates are the best break; case R.id.radio_ninjas: if (checked) // Ninjas rule break; } }