कैसे अलग LinearLayouts से RadioButton समूह के लिए?


93

मैं सोच रहा था कि क्या RadioButtonएक RadioGroup ही संरचना को बनाए रखने के लिए प्रत्येक को एक अद्वितीय समूह में संभव है । मेरी संरचना इस तरह दिखती है:

  • LinearLayout_main
    • LinearLayout_1
      • RadioButton1
    • LinearLayout_2
      • RadioButton2
    • LinearLayout_3
      • RadioButton3

जैसा कि आप देख सकते हैं, अब प्रत्येक RadioButtonअलग का एक बच्चा है LinearLayout। मैंने नीचे संरचना का उपयोग करने की कोशिश की, लेकिन यह काम नहीं करता है:

  • RadioGroup
    • LinearLayout_main
      • LinearLayout_1
        • RadioButton1
      • LinearLayout_2
        • RadioButton2
      • LinearLayout_3
        • RadioButton3

13
@ कोडिंग कौवा, यदि आप पूछने के लिए मजबूर हैं तो आपने यूआई प्रवाह के लिए एक डिजाइनर के साथ काम नहीं किया है (और मुझे लगता है कि आपके रेडियो बटन शायद बहुत परिष्कृत नहीं हैं)। कल्पना करें (यदि आप कर सकते हैं) एक रेडियो बटन जो पाठ के दो टुकड़ों के बगल में बैठता है, एक जो एक शीर्षक है और एक जो एक उप-पाठ है। अब इनमें से 5 को एक दूसरे के शीर्ष पर कल्पना करें। आप इसे कैसे पूरा करेंगे? आह ठीक है ... आप नहीं कर सकते। यह एक अच्छी बात है कि इतने फैंसी की कभी जरूरत नहीं पड़ी या गूगल वास्तव में मूर्ख दिखाई देगा, क्योंकि उनके अन्यथा व्यापक लेआउट में इस तरह की बुनियादी लेआउट कार्यक्षमता की अनदेखी की गई थी।
येवगेनी सिम्किन

3
@ डॉ। ड्रेडेल वाह, हालांकि मैं इस बात से सहमत हूं कि आप क्या कहते हैं (रेडियोबटन का उपयोग), लेकिन शायद आपकी प्रतिक्रिया बहुत भावनात्मक थी? :)
infografnet

14
यह इतना भावुक नहीं था जितना स्पष्ट रूप से नाराज। वह टिप्पणी ओपी को क्या प्रदान करती है? यह सामान्य रूप से धागे को क्या प्रदान करता है? इसका तात्पर्य यह है कि प्रश्न योग्यता के बिना है और अधीर और कर्कश है। यदि उसने इसे "शुरू किया तो क्या आप यह समझा सकते हैं कि आप ऐसा क्यों करना चाहते हैं" जो उचित और विनम्र दोनों होगा। "मुझे पूछने के लिए मजबूर किया जाता है" "एक पतले घूंघट का वैकल्पिक विकल्प है" किस तरह के बेवकूफ को इस निराला कलुगी की आवश्यकता होगी? "। कम से कम मैं इसे कैसे पढ़ता हूं।
येवगेनी सिम्किन

1
Android देव अभी भी RadioGroup के अंदर LinearLayout का उपयोग करने की अनुमति क्यों नहीं देते हैं? मार्शमैलो जारी किया गया है।
शन ज़ीशी

1
फिर भी कोई उचित जवाब नहीं? मैं एक समाधान के लिए खोज रहा था
नीना

जवाबों:


49

ऐसा लगता है कि Google / Android पर अच्छे लोग मानते हैं कि जब आप RadioButtons का उपयोग करते हैं, तो आपको Android UI / लेआउट सिस्टम के हर दूसरे पहलू के साथ आने वाले लचीलेपन की आवश्यकता नहीं है। इसे सीधे शब्दों में कहें: वे नहीं चाहते हैं कि आप लेआउट और रेडियो बटन घोंसला बनाएं। आह।

तो आप समस्या के आसपास काम करेंगे। इसका मतलब है कि आपको अपने दम पर रेडियो बटन को लागू करना होगा।

यह वास्तव में बहुत मुश्किल नहीं है। अपने onCreate () में, अपने RadioButtons को अपने onClick () के साथ सेट करें ताकि जब वे सक्रिय हों, तो वे सेट करें (सत्य) और दूसरे बटनों के लिए विपरीत कार्य करें। उदाहरण के लिए:

class FooActivity {

    RadioButton m_one, m_two, m_three;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        ...
        m_one = (RadioButton) findViewById(R.id.first_radio_button);
        m_two = (RadioButton) findViewById(R.id.second_radio_button);
        m_three = (RadioButton) findViewById(R.id.third_radio_button);

        m_one.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                m_one.setChecked(true);
                m_two.setChecked(false);
                m_three.setChecked(false);
            }
        });

        m_two.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                m_one.setChecked(false);
                m_two.setChecked(true);
                m_three.setChecked(false);
            }
        });

        m_three.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                m_one.setChecked(false);
                m_two.setChecked(false);
                m_three.setChecked(true);
            }
        });

        ...     
    } // onCreate() 

}

हाँ, मुझे पता है - पुराने स्कूल। लेकिन यह काम करता है। सौभाग्य!


33
क्रुद्ध। बस अविश्वसनीय है कि यह "रेडियो बटन" के रूप में सांसारिक के रूप में कुछ करने के लिए आवश्यक कलगी का स्तर है। यह विश्वास से परे है कि Google हमें उन चीज़ों के लिए बहुत कम कटौती देता है जो लगभग पूरी तरह से बेकार हैं (जैसे कि एनिमेशन विजेट के 80%) और फिर हमें अपने स्वयं के रेडियो बटन को एक साथ जोड़ने के लिए छोड़ देता है। (थूक!)।
येवगेनी सिम्किन

3
@ डॉ.रेडेल: हाँ, मैं सहमत हूँ कि उनके बहुत सारे यूआई विकल्प विचित्र हैं। इस सीमा के बारे में मेरा एकमात्र अनुमान है कि वे सोच रहे होंगे, "यह वास्तव में ऐसा नहीं है कि इसे मैन्युअल रूप से करना मुश्किल है।" लेकिन यह अच्छा होता अगर वे फीचर की इस कमी को कम से कम थोड़ा (एक ट्यूटोरियल पेज की तरह) दस्तावेजित करते? जैसा कि आप बताते हैं, वे अन्य बेकार चीजों (पालतू परियोजनाओं, शायद?) पर वाया ओवरबोर्ड कर चुके हैं।
SMBiggs

3
मैं केवल अनुमान लगा सकता हूं, लेकिन मेरी समग्र धारणा यह है कि एंड्रॉइड की यूआई टीम को या तो संक्षिप्त रूप दिया जाता है या बस आम तौर पर काफी कमजोर होता है। विचार करें कि Google ब्रह्मांड में "सुरुचिपूर्ण" के लिए क्या गुजरता है। यह सब वास्तव में संयमी और उपयोगितावादी है। मैं ऐप्पल का प्रशंसक नहीं हूं क्योंकि मैं स्टाइल के लिए कार्यक्षमता पसंद करता हूं, लेकिन अगर कभी भी एक मेगा-कंपनी को नकदी की भीड़ के साथ अपने रूप और अनुभव को पुनर्विचार करने की आवश्यकता होती है (तो ऊपर और नीचे श्रृंखला) मैं इससे बेहतर उम्मीदवार के बारे में नहीं सोच सकता गूगल।
येवगेनी सिम्किन

1
यह अब तक के सबसे विश्वसनीय और सरल समाधानों में से एक है ... हालांकि प्रागैतिहासिक, यह शर्म की बात है कि Google ने कुछ अधिक कुशल नहीं लागू किया है ...
टीवी

3
हाँ .. मैं मैन्युअल रूप से RadioGroup को रेडियो बटन आईडी की तरह कुछ करने की उम्मीद कर रहा था या कुछ और मौजूद होगा अगर यह अतिरिक्त दृश्य समूहों पर स्वचालित ट्रैवर्सल होना महंगा है जिसमें रेडियो समूह के भीतर रेडियो बटन नहीं हैं .. तो मुझे यकीन था कि कुछ ऐसा है यह मौजूद है इसलिए मैंने खोज शुरू की। मैं अब निराशा में यह पद छोड़ता हूं।
ड्रीमिंगव्हेल

27

मेरे द्वारा बनाए गए इस वर्ग का उपयोग करें। यह आपके पदानुक्रम में सभी जांच योग्य बच्चों को मिलेगा।

import java.util.ArrayList;

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Checkable;
import android.widget.LinearLayout;

public class MyRadioGroup extends LinearLayout {

private ArrayList<View> mCheckables = new ArrayList<View>();

public MyRadioGroup(Context context) {
    super(context);
}

public MyRadioGroup(Context context, AttributeSet attrs) {
    this(context, attrs, 0);
}

public MyRadioGroup(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}

@Override
public void addView(View child, int index,
        android.view.ViewGroup.LayoutParams params) {
    super.addView(child, index, params);
    parseChild(child);
}

public void parseChild(final View child)
{
    if(child instanceof Checkable)
    {
        mCheckables.add(child);
        child.setOnClickListener(new OnClickListener() {

            public void onClick(View v) {
                for(int i = 0; i < mCheckables.size();i++)
                {
                    Checkable view = (Checkable) mCheckables.get(i);
                    if(view == v)
                    {
                        ((Checkable)view).setChecked(true);
                    }
                    else
                    {
                        ((Checkable)view).setChecked(false);
                    }
                }
            }
        });
    }
    else if(child instanceof ViewGroup)
    {
        parseChildren((ViewGroup)child);
    }
}

public void parseChildren(final ViewGroup child)
{
    for (int i = 0; i < child.getChildCount();i++)
    {
        parseChild(child.getChildAt(i));
    }
}
}

यह कोड दिया गया है, मुझे वर्तमान चयनित बटन कैसे मिलेगा?
j2emanue

मैं सिर्फ एक चर mCheckedview में डालता हूं जब आप ((जांचने योग्य) दृश्य सेट करते हैं) .setChecked (सत्य); और मैं उस चर को वापस करता हूं जब मुझे यह जानने की आवश्यकता होती है कि कौन सा चेक किया गया था। अब ठीक लगता है, लेकिन डिफ़ॉल्ट रूप से मुझे चाहिए "PerformClick ()"। धन्यवाद
j2emanue

17

खैर, मैंने यह सरल वर्ग लिखा है।

बस इसे इस तरह उपयोग करें:

// add any number of RadioButton resource IDs here
GRadioGroup gr = new GRadioGroup(this, 
    R.id.radioButton1, R.id.radioButton2, R.id.radioButton3);

या

GRadioGroup gr = new GRadioGroup(rb1, rb2, rb3);
// where RadioButton rb1 = (RadioButton) findViewById(R.id.radioButton1);
// etc.

आप इसे उदाहरण के लिए गतिविधि के onCreate () में कह सकते हैं। कोई फर्क नहीं पड़ता कि RadioButtonआप किस पर क्लिक करते हैं, बाकी अनियंत्रित हो जाएंगे। इसके अलावा, कोई बात नहीं, अगर कुछ में से कुछ के RadioButtonsअंदर हैं RadioGroup, या नहीं।

यहाँ वर्ग है:

package pl.infografnet.GClasses;

import java.util.ArrayList;
import java.util.List;

import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewParent;
import android.widget.RadioButton;
import android.widget.RadioGroup;

public class GRadioGroup {

    List<RadioButton> radios = new ArrayList<RadioButton>();

    /**
     * Constructor, which allows you to pass number of RadioButton instances,
     * making a group.
     * 
     * @param radios
     *            One RadioButton or more.
     */
    public GRadioGroup(RadioButton... radios) {
        super();

        for (RadioButton rb : radios) {
            this.radios.add(rb);
            rb.setOnClickListener(onClick);
        }
    }

    /**
     * Constructor, which allows you to pass number of RadioButtons 
     * represented by resource IDs, making a group.
     * 
     * @param activity
     *            Current View (or Activity) to which those RadioButtons 
     *            belong.
     * @param radiosIDs
     *            One RadioButton or more.
     */
    public GRadioGroup(View activity, int... radiosIDs) {
        super();

        for (int radioButtonID : radiosIDs) {
            RadioButton rb = (RadioButton)activity.findViewById(radioButtonID);
            if (rb != null) {
                this.radios.add(rb);
                rb.setOnClickListener(onClick);
            }
        }
    }

    /**
     * This occurs everytime when one of RadioButtons is clicked, 
     * and deselects all others in the group.
     */
    OnClickListener onClick = new OnClickListener() {

        @Override
        public void onClick(View v) {

            // let's deselect all radios in group
            for (RadioButton rb : radios) {

                ViewParent p = rb.getParent();
                if (p.getClass().equals(RadioGroup.class)) {
                    // if RadioButton belongs to RadioGroup, 
                    // then deselect all radios in it 
                    RadioGroup rg = (RadioGroup) p;
                    rg.clearCheck();
                } else {
                    // if RadioButton DOES NOT belong to RadioGroup, 
                    // just deselect it
                    rb.setChecked(false);
                }
            }

            // now let's select currently clicked RadioButton
            if (v.getClass().equals(RadioButton.class)) {
                RadioButton rb = (RadioButton) v;
                rb.setChecked(true);
            }

        }
    };

}

1
अच्छा लगा। यदि आप RadioButton को सुपर क्लास CompoundButton से बदलते हैं तो यह और भी बेहतर है, क्योंकि आप तब समूह में किसी भी टॉगल बटन (जैसे ToggleButton) को जोड़ सकते हैं!
नेरोमेंसर

1
यह ध्यान देने योग्य है कि आपके नियमित रेडियो समूह से getCheckedRadioButtonId () प्रदर्शन करना अब काम नहीं करेगा (हमेशा रिटर्न -1) अगर रेडियो बटन सीधे रेडियो समूह में नेस्टेड नहीं हैं। मैंने निम्न के रूप में ऊपर की कक्षा में एक और तरीका जोड़ा: `/ ** * रेडियो बटन की आईडी लौटाता है जिसे चेक किया जाता है या -1 अगर किसी की भी जाँच नहीं की जाती है * @return * / public int getCheckedRadioButtonId () {intiId = -1; // (RadioButton rb: radios) {if (rb.isChecked ()) {रिटर्न rb.getId () के लिए प्रत्येक रेडियो बटन को लूप करें; }} रिटर्न checkId; } `
शाम

14

यहाँ मेरा समाधान @lostdev समाधान और कार्यान्वयन पर आधारित है RadioGroup। यह RadioButtons (या अन्य CompoundButtons) के साथ काम करने के लिए संशोधित एक RadioGroup है जो बाल लेआउट के अंदर नेस्टेड है।

import android.content.Context;
import android.os.Build;
import android.support.annotation.IdRes;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CompoundButton;
import android.widget.LinearLayout;
import android.widget.RadioButton;

import java.util.concurrent.atomic.AtomicInteger;

/**
 * This class is a replacement for android RadioGroup - it supports
 * child layouts which standard RadioGroup doesn't.
 */
public class RecursiveRadioGroup extends LinearLayout {

    public interface OnCheckedChangeListener {
        void onCheckedChanged(RecursiveRadioGroup group, @IdRes int checkedId);
    }

    /**
     * For generating unique view IDs on API < 17 with {@link #generateViewId()}.
     */
    private static final AtomicInteger sNextGeneratedId = new AtomicInteger(1);

    private CompoundButton checkedView;

    private CompoundButton.OnCheckedChangeListener childOnCheckedChangeListener;

    /**
     * When this flag is true, onCheckedChangeListener discards events.
     */
    private boolean mProtectFromCheckedChange = false;

    private OnCheckedChangeListener onCheckedChangeListener;

    private PassThroughHierarchyChangeListener mPassThroughListener;

    public RecursiveRadioGroup(Context context) {
        super(context);
        setOrientation(HORIZONTAL);
        init();
    }

    public RecursiveRadioGroup(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    public RecursiveRadioGroup(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init() {
        childOnCheckedChangeListener = new CheckedStateTracker();
        mPassThroughListener = new PassThroughHierarchyChangeListener();

        super.setOnHierarchyChangeListener(mPassThroughListener);
    }

    @Override
    public void setOnHierarchyChangeListener(OnHierarchyChangeListener listener) {
        mPassThroughListener.mOnHierarchyChangeListener = listener;
    }

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();

        // checks the appropriate radio button as requested in the XML file
        if (checkedView != null) {
            mProtectFromCheckedChange = true;
            setCheckedStateForView(checkedView, true);
            mProtectFromCheckedChange = false;
            setCheckedView(checkedView);
        }
    }

    @Override
    public void addView(View child, int index, ViewGroup.LayoutParams params) {
        parseChild(child);

        super.addView(child, index, params);
    }

    private void parseChild(final View child) {
        if (child instanceof CompoundButton) {
            final CompoundButton checkable = (CompoundButton) child;

            if (checkable.isChecked()) {
                mProtectFromCheckedChange = true;
                if (checkedView != null) {
                    setCheckedStateForView(checkedView, false);
                }
                mProtectFromCheckedChange = false;
                setCheckedView(checkable);
            }
        } else if (child instanceof ViewGroup) {
            parseChildren((ViewGroup) child);
        }
    }

    private void parseChildren(final ViewGroup child) {
        for (int i = 0; i < child.getChildCount(); i++) {
            parseChild(child.getChildAt(i));
        }
    }

    /**
     * <p>Sets the selection to the radio button whose identifier is passed in
     * parameter. Using -1 as the selection identifier clears the selection;
     * such an operation is equivalent to invoking {@link #clearCheck()}.</p>
     *
     * @param view the radio button to select in this group
     * @see #getCheckedItemId()
     * @see #clearCheck()
     */
    public void check(CompoundButton view) {
        if(checkedView != null) {
            setCheckedStateForView(checkedView, false);
        }

        if(view != null) {
            setCheckedStateForView(view, true);
        }

        setCheckedView(view);
    }

    private void setCheckedView(CompoundButton view) {
        checkedView = view;

        if(onCheckedChangeListener != null) {
            onCheckedChangeListener.onCheckedChanged(this, checkedView.getId());
        }
    }

    private void setCheckedStateForView(View checkedView, boolean checked) {
        if (checkedView != null && checkedView instanceof CompoundButton) {
            ((CompoundButton) checkedView).setChecked(checked);
        }
    }

    /**
     * <p>Returns the identifier of the selected radio button in this group.
     * Upon empty selection, the returned value is -1.</p>
     *
     * @return the unique id of the selected radio button in this group
     * @attr ref android.R.styleable#RadioGroup_checkedButton
     * @see #check(CompoundButton)
     * @see #clearCheck()
     */
    @IdRes
    public int getCheckedItemId() {
        return checkedView.getId();
    }

    public CompoundButton getCheckedItem() {
        return checkedView;
    }

    /**
     * <p>Clears the selection. When the selection is cleared, no radio button
     * in this group is selected and {@link #getCheckedItemId()} returns
     * null.</p>
     *
     * @see #check(CompoundButton)
     * @see #getCheckedItemId()
     */
    public void clearCheck() {
        check(null);
    }

    /**
     * <p>Register a callback to be invoked when the checked radio button
     * changes in this group.</p>
     *
     * @param listener the callback to call on checked state change
     */
    public void setOnCheckedChangeListener(RecursiveRadioGroup.OnCheckedChangeListener listener) {
        onCheckedChangeListener = listener;
    }

    /**
     * Generate a value suitable for use in {@link #setId(int)}.
     * This value will not collide with ID values generated at build time by aapt for R.id.
     *
     * @return a generated ID value
     */
    public static int generateViewId() {
        for (; ; ) {
            final int result = sNextGeneratedId.get();
            // aapt-generated IDs have the high byte nonzero; clamp to the range under that.
            int newValue = result + 1;
            if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
            if (sNextGeneratedId.compareAndSet(result, newValue)) {
                return result;
            }
        }
    }

    private class CheckedStateTracker implements CompoundButton.OnCheckedChangeListener {

        @Override
        public void onCheckedChanged(CompoundButton view, boolean b) {
            if (mProtectFromCheckedChange) {
                return;
            }

            mProtectFromCheckedChange = true;
            if (checkedView != null) {
                setCheckedStateForView(checkedView, false);
            }
            mProtectFromCheckedChange = false;

            int id = view.getId();
            setCheckedView(view);
        }
    }

    private class PassThroughHierarchyChangeListener implements OnHierarchyChangeListener {

        private OnHierarchyChangeListener mOnHierarchyChangeListener;

        @Override
        public void onChildViewAdded(View parent, View child) {
            if (child instanceof CompoundButton) {
                int id = child.getId();

                if (id == View.NO_ID) {
                    if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) {
                        child.setId(generateViewId());
                    } else {
                        child.setId(View.generateViewId());
                    }
                }

                ((CompoundButton) child).setOnCheckedChangeListener(childOnCheckedChangeListener);

                if (mOnHierarchyChangeListener != null) {
                    mOnHierarchyChangeListener.onChildViewAdded(parent, child);
                }
            } else if(child instanceof ViewGroup) {
                // View hierarchy seems to be constructed from the bottom up,
                // so all child views are already added. That's why we
                // manually call the listener for all children of ViewGroup.
                for(int i = 0; i < ((ViewGroup) child).getChildCount(); i++) {
                    onChildViewAdded(child, ((ViewGroup) child).getChildAt(i));
                }
            }
        }

        @Override
        public void onChildViewRemoved(View parent, View child) {
            if (child instanceof RadioButton) {
                ((CompoundButton) child).setOnCheckedChangeListener(null);
            }

            if (mOnHierarchyChangeListener != null) {
                mOnHierarchyChangeListener.onChildViewRemoved(parent, child);
            }
        }
    }

}

आप इसे अपने लेआउट में उसी तरह उपयोग कर सकते हैं जैसे आप RadioGroupअपवाद के साथ एक नियमित रूप से करते हैं कि यह नेस्टेड RadioButtonविचारों के साथ भी काम करता है :

<RecursiveRadioGroup
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="16dp"
    android:layout_marginBottom="16dp"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    android:orientation="horizontal">

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="vertical">

        <RadioButton
            android:id="@+id/rbNotEnoughProfileInfo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Not enough profile information"/>

        <RadioButton
            android:id="@+id/rbNotAGoodFit"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Not a good fit"/>

        <RadioButton
            android:id="@+id/rbDatesNoLongerAvailable"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Dates no longer available"/>

    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical">

        <RadioButton
            android:id="@+id/rbOther"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Other"/>

        <android.support.v7.widget.AppCompatEditText
            android:id="@+id/etReason"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@+id/tvMessageError"
            android:textSize="15sp"
            android:gravity="top|left"
            android:hint="Tell us more"
            android:padding="16dp"
            android:background="@drawable/edit_text_multiline_background"/>
    </LinearLayout>

</RecursiveRadioGroup>

6

यह समाधान पोस्ट नहीं किया गया है:

चरण 0: एक बनाएँ CompoundButton previousCheckedCompoundButton; वैश्विक वैरिएबल ।

चरण 1: OnCheckedChangedListenerरेडियो बटन बनाएं

CompoundButton.OnCheckedChangeListener onRadioButtonCheckedListener = new CompoundButton.OnCheckedChangeListener() {
        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            if (!isChecked) return;
            if (previousCheckedCompoundButton != null) {
                previousCheckedCompoundButton.setChecked(false);
                previousCheckedCompoundButton = buttonView;
            } else {
                previousCheckedCompoundButton = buttonView;
            }
        }
    };

चरण 3: सभी रेडियो बटन में श्रोता जोड़ें:

radioButton1.setOnCheckedChangeListener(onRadioButtonCheckedListener);
radioButton2.setOnCheckedChangeListener(onRadioButtonCheckedListener);
radioButton3.setOnCheckedChangeListener(onRadioButtonCheckedListener);
radioButton4.setOnCheckedChangeListener(onRadioButtonCheckedListener);

बस!! हो गया।


5

आह .. वास्तव में दोष है कि एंड्रॉइड में ऐसी बुनियादी कार्यक्षमता का अभाव है।

@ScottBiggs उत्तर से अनुकूलित, यहाँ कोटलिन के साथ करने का संभवतः सबसे छोटा तरीका है:

var currentSelected = button1
listOf<RadioButton>(
    button1, button2, button3, ...
).forEach {
    it.setOnClickListener { _ ->
        currentSelected.isChecked = false
        currentSelected = it
        currentSelected.isChecked = true
    }
}

आपके उत्तर के अंदर कोई तर्क नहीं है, इसे और अधिक ध्यान से देखें
एडगर खिमिच

@EdgarKhimich आपको "नो लॉजिक" से क्या मतलब ..? मेरे कोड को बस और सुरुचिपूर्ण ढंग से मूल प्रश्न का उत्तर देना है कि कितने रेडियो बटन को समूहबद्ध करना है। हम एक साधारण चेक टॉगल करने की तुलना में किसी अन्य onclicklistener की स्थापना नहीं कर रहे हैं।
viz

यह एकदम सही है ... एक आकर्षण की तरह काम करता है, और ज्यादा कोड नहीं जोड़ता है। धन्यवाद!
kwishnu

3

मैंने इस समस्या को हल करने के लिए इन दो तरीकों का निर्माण किया। आपको बस इतना करना है कि व्यूग्रुप को पास करें जहां रेडियोबटन हैं (एक रेडियोग्रुप, लिनियरलाईट, रिलेटिवलाईट, इत्यादि हो सकते हैं) और यह ओनक्लिक घटनाओं को विशेष रूप से सेट करता है, अर्थात, जब भी कोई रेडियोबॉटन जो कि व्यूग्रुप का बच्चा है किसी भी नेस्टेड स्तर पर) का चयन किया जाता है, अन्य अचयनित होते हैं। यह उतने ही नेस्टेड लेआउट के साथ काम करता है, जितना आप चाहते हैं।

public class Utils {
    public static void setRadioExclusiveClick(ViewGroup parent) {
        final List<RadioButton> radios = getRadioButtons(parent);

        for (RadioButton radio: radios) {
            radio.setOnClickListener(new OnClickListener() {

                @Override
                public void onClick(View v) {
                    RadioButton r = (RadioButton) v;
                    r.setChecked(true);
                    for (RadioButton r2:radios) {
                        if (r2.getId() != r.getId()) {
                            r2.setChecked(false);
                        }
                    }

                }
            });
        }
    }

    private static List<RadioButton> getRadioButtons(ViewGroup parent) {
        List<RadioButton> radios = new ArrayList<RadioButton>();
        for (int i=0;i < parent.getChildCount(); i++) {
            View v = parent.getChildAt(i);
            if (v instanceof RadioButton) {
                radios.add((RadioButton) v);
            } else if (v instanceof ViewGroup) {
                List<RadioButton> nestedRadios = getRadioButtons((ViewGroup) v);
                radios.addAll(nestedRadios);
            }
        }
        return radios;
    }
}

किसी गतिविधि के अंदर उपयोग इस तरह होगा:

ViewGroup parent = findViewById(R.id.radios_parent);
Utils.setRadioExclusiveClick(parent);

2

मैंने अपना खुद का रेडियो समूह वर्ग लिखा है जो नेस्टेड रेडियो बटन को रखने की अनुमति देता है। इसकी जांच - पड़ताल करें। यदि आपको कीड़े मिले, तो कृपया मुझे बताएं।

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CompoundButton;
import android.widget.LinearLayout;

/**
 * This class is used to create a multiple-exclusion scope for a set of compound
 * buttons. Checking one compound button that belongs to a group unchecks any
 * previously checked compound button within the same group. Intially, all of
 * the compound buttons are unchecked. While it is not possible to uncheck a
 * particular compound button, the group can be cleared to remove the checked
 * state. Basically, this class extends functionality of
 * {@link android.widget.RadioGroup} because it doesn't require that compound
 * buttons are direct childs of the group. This means you can wrap compound
 * buttons with other views. <br>
 * <br>
 * 
 * <b>IMPORTATNT! Follow these instruction when using this class:</b><br>
 * 1. Each direct child of this group must contain one compound button or be
 * compound button itself.<br>
 * 2. Do not set any "on click" or "on checked changed" listeners for the childs
 * of this group.
 */
public class CompoundButtonsGroup extends LinearLayout {

 private View checkedView;
 private OnCheckedChangeListener listener;
 private OnHierarchyChangeListener onHierarchyChangeListener;

 private OnHierarchyChangeListener onHierarchyChangeListenerInternal = new OnHierarchyChangeListener() {

  @Override
  public final void onChildViewAdded(View parent, View child) {
   notifyHierarchyChanged(null);
   if (CompoundButtonsGroup.this.onHierarchyChangeListener != null) {
    CompoundButtonsGroup.this.onHierarchyChangeListener.onChildViewAdded(
      parent, child);
   }
  }

  @Override
  public final void onChildViewRemoved(View parent, View child) {
   notifyHierarchyChanged(child);
   if (CompoundButtonsGroup.this.onHierarchyChangeListener != null) {
    CompoundButtonsGroup.this.onHierarchyChangeListener.onChildViewRemoved(
      parent, child);
   }
  }
 };

 public CompoundButtonsGroup(Context context) {
  super(context);
  init();
 }

 public CompoundButtonsGroup(Context context, AttributeSet attrs) {
  super(context, attrs);
  init();
 }

 public CompoundButtonsGroup(Context context, AttributeSet attrs, int defStyle) {
  super(context, attrs, defStyle);
  init();
 }

 private void init() {
  super.setOnHierarchyChangeListener(this.onHierarchyChangeListenerInternal);
 }

 @Override
 public final void setOnHierarchyChangeListener(OnHierarchyChangeListener listener) {
  this.onHierarchyChangeListener = listener;
 }

 /**
  * Register a callback to be invoked when the checked view changes in this
  * group.
  * 
  * @param listener
  *            the callback to call on checked state change.
  */
 public void setOnCheckedChangeListener(OnCheckedChangeListener listener) {
  this.listener = listener;
 }

 /**
  * Returns currently selected view in this group. Upon empty selection, the
  * returned value is null.
  */
 public View getCheckedView() {
  return this.checkedView;
 }

 /**
  * Returns index of currently selected view in this group. Upon empty
  * selection, the returned value is -1.
  */
 public int getCheckedViewIndex() {
  return (this.checkedView != null) ? indexOfChild(this.checkedView) : -1;
 }

 /**
  * Sets the selection to the view whose index in group is passed in
  * parameter.
  * 
  * @param index
  *            the index of the view to select in this group.
  */
 public void check(int index) {
  check(getChildAt(index));
 }

 /**
  * Clears the selection. When the selection is cleared, no view in this
  * group is selected and {@link #getCheckedView()} returns null.
  */
 public void clearCheck() {
  if (this.checkedView != null) {
   findCompoundButton(this.checkedView).setChecked(false);
   this.checkedView = null;
   onCheckedChanged();
  }
 }

 private void onCheckedChanged() {
  if (this.listener != null) {
   this.listener.onCheckedChanged(this.checkedView);
  }
 }

 private void check(View child) {
  if (this.checkedView == null || !this.checkedView.equals(child)) {
   if (this.checkedView != null) {
    findCompoundButton(this.checkedView).setChecked(false);
   }

   CompoundButton comBtn = findCompoundButton(child);
   comBtn.setChecked(true);

   this.checkedView = child;
   onCheckedChanged();
  }
 }

 private void notifyHierarchyChanged(View removedView) {
  for (int i = 0; i < getChildCount(); i++) {
   View child = getChildAt(i);
   child.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View v) {
     check(v);
    }
   });
   CompoundButton comBtn = findCompoundButton(child);
   comBtn.setClickable(comBtn.equals(child));
  }

  if (this.checkedView != null && removedView != null
    && this.checkedView.equals(removedView)) {
   clearCheck();
  }
 }

 private CompoundButton findCompoundButton(View view) {
  if (view instanceof CompoundButton) {
   return (CompoundButton) view;
  }

  if (view instanceof ViewGroup) {
   for (int i = 0; i < ((ViewGroup) view).getChildCount(); i++) {
    CompoundButton compoundBtn = findCompoundButton(((ViewGroup) view)
      .getChildAt(i));
    if (compoundBtn != null) {
     return compoundBtn;
    }
   }
  }

  return null;
 }

 /**
  * Interface definition for a callback to be invoked when the checked view
  * changed in this group.
  */
 public interface OnCheckedChangeListener {

  /**
   * Called when the checked view has changed.
   * 
   * @param checkedView
   *            newly checked view or null if selection was cleared in the
   *            group.
   */
  public void onCheckedChanged(View checkedView);
 }

}

2

आपको दो काम करने होंगे:

  1. उपयोग mListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
  2. अपने कस्टम पंक्ति दृश्य को लागू करें Checkable

इसलिए मुझे लगता है कि बेहतर उपाय यह है कि अपने इनर लीनियरलैट के अंदर चेकेबल को लागू करें: (daichan4649 के लिए धन्यवाद, उनके लिंक से, https://gist.github.com/daichan4649/5245378 , मैंने नीचे दिए गए सभी कोड ले लिए)

CheckableLayout.java

package daichan4649.test;

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.Checkable;
import android.widget.LinearLayout;

public class CheckableLayout extends LinearLayout implements Checkable {

    private static final int[] CHECKED_STATE_SET = { android.R.attr.state_checked };

    public CheckableLayout(Context context) {
        super(context, null);
    }

    public CheckableLayout(Context context, AttributeSet attrs) {
        super(context, attrs, 0);
    }

    public CheckableLayout(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    private boolean checked;

    @Override
    public boolean isChecked() {
        return checked;
    }

    @Override
    public void setChecked(boolean checked) {
        if (this.checked != checked) {
            this.checked = checked;
            refreshDrawableState();

            for (int i = 0; i < getChildCount(); i++) {
                View child = getChildAt(i);
                if (child instanceof Checkable) {
                    ((Checkable) child).setChecked(checked);
                }
            }
        }
    }

    @Override
    public void toggle() {
        setChecked(!checked);
    }

    @Override
    protected int[] onCreateDrawableState(int extraSpace) {
        final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
        if (isChecked()) {
            mergeDrawableStates(drawableState, CHECKED_STATE_SET);
        }
        return drawableState;
    }
}

inflater_list_column.xml

<?xml version="1.0" encoding="utf-8"?>
<daichan4649.test.CheckableLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/check_area"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_vertical">

    <TextView
        android:id="@+id/text"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="1"
        android:gravity="center_vertical" />

    <RadioButton
        android:id="@+id/radio"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:clickable="false"
        android:focusable="false"
        android:focusableInTouchMode="false" />

</daichan4649.test.CheckableLayout>

TestFragment.java

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    View view = inflater.inflate(R.layout.fragment_test, container, false);

    // 表示データ
    List<String> dataList = new ArrayList<String>();

    // 初期選択位置
    int initSelectedPosition = 3;

    // リスト設定
    TestAdapter adapter = new TestAdapter(getActivity(), dataList);
    ListView listView = (ListView) view.findViewById(R.id.list);
    listView.setAdapter(adapter);
    listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
    listView.setItemChecked(initSelectedPosition, true);

    listView.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            // 選択状態を要素(checkable)へ反映
            Checkable child = (Checkable) parent.getChildAt(position);
            child.toggle();
        }
    });
    return view;
}

private static class TestAdapter extends ArrayAdapter<String> {

    private LayoutInflater inflater;

    public TestAdapter(Context context, List<String> dataList) {
        super(context, 0, dataList);
        inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        final ViewHolder holder;
        if (convertView == null) {
            convertView = inflater.inflate(R.layout.inflater_list_column, null);
            holder = new ViewHolder();
            holder.text = (TextView) convertView.findViewById(R.id.text);
            convertView.setTag(holder);
        } else {
            holder = (ViewHolder) convertView.getTag();
        }

        // bindData
        holder.text.setText(getItem(position));
        return convertView;
    }
}

private static class ViewHolder {
    TextView text;
}

2

मुझे एक ही समस्या का सामना करना पड़ रहा है क्योंकि मैं 4 अलग-अलग रेडियो बटन को दो अलग-अलग रेखाओं में रखना चाहता हूं और ये लेआउट रेडियो समूह के बच्चे होंगे। RadioGroup में इच्छा व्यवहार को प्राप्त करने के लिए मैंने AddView फ़ंक्शन को अधिभारित किया है

यहाँ समाधान है

public class AgentRadioGroup extends RadioGroup
{

    public AgentRadioGroup(Context context) {
        super(context);
    }

    public AgentRadioGroup(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public void onViewAdded(View child) {
        if( child instanceof ViewGroup)
        {
            ViewGroup viewGroup = (ViewGroup) child;
            for(int i=0; i<viewGroup.getChildCount(); i++)
            {
                View subChild = viewGroup.getChildAt(i);
                if( subChild instanceof ViewGroup )
                {
                    onViewAdded(subChild);
                }
                else
                {
                    if (subChild instanceof RadioButton) {
                        super.onViewAdded(subChild);
                    }
                }
            }
        }
        if (child instanceof RadioButton)
        {
            super.onViewAdded(child);
        }
    }
}

1

आपको उस लेआउट संरचना को लागू करने से कुछ भी नहीं रोक रहा है ( RadioGroupवास्तव में एक उपवर्ग है LinearLayout) लेकिन आपको नहीं करना चाहिए। सबसे पहले आप एक संरचना 4 स्तरों गहरी (एक और लेआउट संरचना का उपयोग आप इस का अनुकूलन कर सकते हैं) और दूसरा, यदि आपका बनाने RadioButtonsएक के प्रत्यक्ष बच्चे नहीं RadioGroup, केवल एक आइटम समूह में चुना काम नहीं करेगा। इसका मतलब यह है कि यदि आप Radiobuttonउस लेआउट से चयन करते हैं और फिर दूसरे का चयन करते हैं तो RadioButtonआप अंतिम RadioButtonsचयनित के बजाय दो चयनित के साथ समाप्त हो जाएंगे ।

यदि आप समझाते हैं कि आप उस लेआउट में क्या करना चाहते हैं तो शायद मैं आपको एक विकल्प सुझा सकता हूं।


लुक्सप्रॉग, आपकी व्याख्या के लिए धन्यवाद। अगर मैं सही समझूं तो रेडियोबटन एक रेडियो समूह के सीधे बच्चे नहीं हैं, यह काम नहीं करेगा।
marcoqf73

1
@ marcoqf73 हां, इसे और अधिक सरल बनाने के लिए, यदि आपके पास RadioButtonsऔर माता RadioGroup- पिता के बीच लेआउट में कुछ भी है तो यह हमेशा की तरह काम नहीं करेगा और मूल रूप से आप एक LinearLayoutभरे हुए के साथ समाप्त होंगे RadioButtons
लुक्सप्रोग

2
ऐसा कुछ करने के कारणों की गुत्थियाँ हैं। उदाहरण के लिए आप एक साधारण रैखिक से अधिक अपने लेआउट का नियंत्रण करना चाहते हो सकता है; मेरे मामले में, मैं RadioButtons की कई पंक्तियाँ बनाना चाहता हूँ। घोंसले के शिकार कैसे बहुत ज्यादा हर कोई Android लेआउट काम करता है। बाह, मैं इन यूआई quirks के समाधान की खोज करते हुए, "आप ऐसा नहीं कर सकते" सुनकर बीमार हो गए हैं, जो मुझे हर दूसरे दिन मिलता है। :(
SMBiggs

@ScottBiggs मैंने यह नहीं कहा कि आप ऐसा नहीं कर सकते, मैंने कहा कि सवाल पूछने वाले की कोशिश नहीं होगी। आप अपने स्वयं के लेआउट को लागू करने के लिए स्वतंत्र हैं (लेकिन यह सही नहीं है कि यह आसान है) या मेरा stackoverflow.com/questions/10425569/… के उत्तर में एक चाल का उपयोग करें ।
लुकप्रॉग नौ

मैंने एक रेडियोग्राफ़ क्लास बनाया, जिसने टेबल लेआउट बढ़ाया और रेडियोग्राफ़ क्लास से फीचर्स जोड़े। यह असीमित संख्या में कॉलम के साथ रेडियो बटन को गतिशील रूप से जोड़ने के साथ काफी अच्छी तरह से काम करता है। stackoverflow.com/questions/10425569/…
क्रिस्टी वेल्श

1

मेरा $ 0.02 @infografnet और @lostdev पर आधारित (कंपाउंड गहन सुझाव के लिए @Neromancer भी धन्यवाद!)

public class AdvRadioGroup {
    public interface OnButtonCheckedListener {
        void onButtonChecked(CompoundButton button);
    }

    private final List<CompoundButton> buttons;
    private final View.OnClickListener onClick = new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            setChecked((CompoundButton) v);
        }
    };

    private OnButtonCheckedListener listener;
    private CompoundButton lastChecked;


    public AdvRadioGroup(View view) {
        buttons = new ArrayList<>();
        parseView(view);
    }

    private void parseView(final View view) {
        if(view instanceof CompoundButton) {
            buttons.add((CompoundButton) view);
            view.setOnClickListener(onClick);
        } else if(view instanceof ViewGroup) {
            final ViewGroup group = (ViewGroup) view;
            for (int i = 0; i < group.getChildCount();i++) {
                parseView(group.getChildAt(i));
            }
        }
    }

    public List<CompoundButton> getButtons() { return buttons; }

    public CompoundButton getLastChecked() { return lastChecked; }

    public void setChecked(int index) { setChecked(buttons.get(index)); }

    public void setChecked(CompoundButton button) {
        if(button == lastChecked) return;

        for (CompoundButton btn : buttons) {
            btn.setChecked(false);
        }

        button.setChecked(true);

        lastChecked = button;

        if(listener != null) {
            listener.onButtonChecked(button);
        }
    }

    public void setOnButtonCheckedListener(OnButtonCheckedListener listener) { this.listener = listener; }
}

उपयोग (श्रोता के साथ):

AdvRadioGroup group = new AdvRadioGroup(findViewById(R.id.YOUR_VIEW));
group.setOnButtonCheckedListener(new AdvRadioGroup.OnButtonCheckedListener() {
    @Override
    public void onButtonChecked(CompoundButton button) {
        // do fun stuff here!
    }
});

बोनस: आप अंतिम चेक बटन, संपूर्ण बटनों की सूची प्राप्त कर सकते हैं, और आप इसके साथ किसी भी बटन को इंडेक्स द्वारा जांच सकते हैं!


महान समाधान! यह मेरे लिए काम करता है। केवल क्रो आप एक नया onClick श्रोता के अंदर रैखिक लेआउट के लिए असाइन करने की आवश्यकता है क्योंकि केवल अगर आप रेडियोबूटन के चक्र को स्पर्श करते हैं, तो सेलेक्शन में परिवर्तन होता है।
बेन्फी

1
    int currentCheckedRadioButton = 0;
    int[] myRadioButtons= new int[6];
    myRadioButtons[0] = R.id.first;
    myRadioButtons[1] = R.id.second;
    //..
    for (int radioButtonID : myRadioButtons) {
        findViewById(radioButtonID).setOnClickListener(
                    new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (currentCheckedRadioButton != 0)
                    ((RadioButton) findViewById(currentCheckedRadioButton)).setChecked(false);
                currentCheckedRadioButton = v.getId();

            }
        });
    }

0

हालांकि यह शायद एक पुराना विषय है, मैं जल्दी से लिखा गया सरल हैक कोड साझा करना चाहूंगा .. यह हर किसी के लिए नहीं है और कुछ परिशोधन के साथ भी कर सकता है।

इस कोड का उपयोग करने की स्थिति ??
यह कोड उन लोगों के लिए है जिनके पास मूल प्रश्न या इसी तरह का एक लेआउट है, मेरे मामले में यह नीचे था। यह व्यक्तिगत रूप से एक डायलॉग के लिए था जिसका मैं उपयोग कर रहा था।

  • LinLayout_Main
    • LinLayout_Row1
      • imageView
      • रेडियो बटन
    • LinLayout_Row2
      • imageView
      • रेडियो बटन
    • LinLayout_Row3
      • imageView
      • रेडियो बटन

कोड स्वयं क्या करता है ??
यह कोड "LinLayout_Main" के बालकों की गणना करेगा और प्रत्येक बच्चे के लिए जो "LinearLayout" होगा, तब वह किसी भी RadioButtons के लिए उस दृश्य को देखेगा।

बस यह माता-पिता "LinLayout_Main" को देखेगा और किसी भी RadioButtons को ढूंढेगा जो किसी भी चाइल्ड LinearLayouts में हैं।

MyMethod_ShowDialog
एक्सएमएल लेआउट फ़ाइल के साथ एक संवाद दिखाएगा, जबकि यह प्रत्येक रेडियोबटन के लिए "setOnClickListener" को खोजने के लिए भी देखता है।

MyMethod_ClickRadio
प्रत्येक RadioButton को उसी तरह लूप करेगा जैसे "MyMethod_ShowDialog" करता है, लेकिन "setOnClickListener" सेट करने के बजाय यह "setChecked (गलत)" प्रत्येक RadioButton को साफ़ करने के लिए करेगा और फिर अंतिम चरण के रूप में "setChecked (false)" RadioBB " क्लिक इवेंट कहा जाता है।

public void MyMethod_ShowDialog(final double tmpLat, final double tmpLng) {
        final Dialog dialog = new Dialog(actMain);
        dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
        dialog.setContentView(R.layout.layout_dialogXML);

        final LinearLayout tmpLayMain = (LinearLayout)dialog.findViewById(R.id.LinLayout_Main);
        if (tmpLayMain!=null) {
            // Perform look for each child of main LinearLayout
            int iChildCount1 = tmpLayMain.getChildCount();
            for (int iLoop1=0; iLoop1 < iChildCount1; iLoop1++){
                View tmpChild1 = tmpLayMain.getChildAt(iLoop1);
                if (tmpChild1 instanceof LinearLayout) {
                    // Perform look for each LinearLayout child of main LinearLayout
                    int iChildCount2 = ((LinearLayout) tmpChild1).getChildCount();
                    for (int iLoop2=0; iLoop2 < iChildCount2; iLoop2++){
                        View tmpChild2 = ((LinearLayout) tmpChild1).getChildAt(iLoop2);
                        if (tmpChild2 instanceof RadioButton) {
                            ((RadioButton) tmpChild2).setOnClickListener(new RadioButton.OnClickListener() {
                                public void onClick(View v) {
                                    MyMethod_ClickRadio(v, dialog);
                                }
                            });
                        }
                    }
                }
            }

            Button dialogButton = (Button)dialog.findViewById(R.id.LinLayout_Save);
            dialogButton.setOnClickListener(new Button.OnClickListener() {
                public void onClick(View v) {
                    dialog.dismiss();
                }
            });
        }
       dialog.show();
}


public void MyMethod_ClickRadio(View vRadio, final Dialog dDialog) {

        final LinearLayout tmpLayMain = (LinearLayout)dDialog.findViewById(R.id.LinLayout_Main);
        if (tmpLayMain!=null) {
            int iChildCount1 = tmpLayMain.getChildCount();
            for (int iLoop1=0; iLoop1 < iChildCount1; iLoop1++){
                View tmpChild1 = tmpLayMain.getChildAt(iLoop1);
                if (tmpChild1 instanceof LinearLayout) {
                    int iChildCount2 = ((LinearLayout) tmpChild1).getChildCount();
                    for (int iLoop2=0; iLoop2 < iChildCount2; iLoop2++){
                        View tmpChild2 = ((LinearLayout) tmpChild1).getChildAt(iLoop2);
                        if (tmpChild2 instanceof RadioButton) {
                            ((RadioButton) tmpChild2).setChecked(false);
                        }
                    }
                }
            }
        }

        ((RadioButton) vRadio).setChecked(true);
}

हो सकता है कि बग्स, प्रोजेक्ट से कॉपी किए गए और नाम बदलकर Voids / XML / ID हो

आप यह जानने के लिए कि कौन से आइटम चेक किए गए हैं, उसी प्रकार का लूप भी चला सकते हैं


क्या आप यह काम करने में सक्षम थे। मैं एक रेडियोग्राफ बनाने की कोशिश कर रहा हूं जिसमें उप-लीनियरआउट्स हों जो एक नियमित बटन के बगल में एक रेडियो बटन हो। मैं इसे काम करने और पोस्ट करने के लिए नहीं मिला , लेकिन बताया गया कि रेडियोग्राफ किसी भी ऐसे बच्चे पर क्रैश हो जाएगा जो रेडियोबॉटन नहीं हैं।
अबल्टर

0

यह @ Infografnet के समाधान का एक संशोधित संस्करण है। यह सरल और प्रयोग करने में आसान है।

RadioGroupHelper group = new RadioGroupHelper(this,R.id.radioButton1,R.id.radioButton2); group.radioButtons.get(0).performClick(); //programmatically

बस कॉपी और पेस्ट करें

package com.qamar4p.farmer.ui.custom;

import java.util.ArrayList;
import java.util.List;

import android.app.Activity;
import android.view.View;
import android.widget.CompoundButton;
import android.widget.RadioButton;

public class RadioGroupHelper {

    public List<CompoundButton> radioButtons = new ArrayList<>();

    public RadioGroupHelper(RadioButton... radios) {
        super();
        for (RadioButton rb : radios) {
            add(rb);
        }
    }

    public RadioGroupHelper(Activity activity, int... radiosIDs) {
        this(activity.findViewById(android.R.id.content),radiosIDs);
    }

    public RadioGroupHelper(View rootView, int... radiosIDs) {
        super();
        for (int radioButtonID : radiosIDs) {
            add((RadioButton)rootView.findViewById(radioButtonID));
        }
    }

    private void add(CompoundButton button){
        this.radioButtons.add(button);
        button.setOnClickListener(onClickListener);
    }

    View.OnClickListener onClickListener = v -> {
        for (CompoundButton rb : radioButtons) {
            if(rb != v) rb.setChecked(false);
        }
    };
}

0

जैसा कि उत्तर में दिखाया गया है, समाधान एक सरल कस्टम हैक है। यहाँ कोटलिन में मेरा न्यूनतम संस्करण है।

import android.widget.RadioButton

class SimpleRadioGroup(private val radioButtons: List<RadioButton>) {

    init {
        radioButtons.forEach {
            it.setOnClickListener { clickedButton ->
                radioButtons.forEach { it.isChecked = false }
                (clickedButton as RadioButton).isChecked = true
            }
        }
    }

    val checkedButton: RadioButton?
        get() = radioButtons.firstOrNull { it.isChecked }
}

फिर आपको बस कुछ ऐसा करने की आवश्यकता है जो आपकी गतिविधि के onCreate या खंड के onViewCreated:

SimpleRadioGroup(listOf(radio_button_1, radio_button_2, radio_button_3))

0

यह मेरे अंदर रेडियोब्लूटन के साथ कस्टम लेआउट के लिए कोटलिन पर मेरा समाधान है।

tipInfoContainerFirst.radioButton.isChecked = true

var prevSelected = tipInfoContainerFirst.radioButton
prevSelected.isSelected = true

listOf<RadioButton>(
    tipInfoContainerFirst.radioButton,
    tipInfoContainerSecond.radioButton,
    tipInfoContainerThird.radioButton,
    tipInfoContainerForth.radioButton,
    tipInfoContainerCustom.radioButton
).forEach {
    it.setOnClickListener { _it ->
    if(!it.isSelected) {
        prevSelected.isChecked = false
        prevSelected.isSelected = false
        it.radioButton.isSelected = true
        prevSelected = it.radioButton
    }
  }
}

0

मैं एक ही समस्या में हूं, मुझे लिंग के लिए रेडियो बटन का उपयोग करना होगा और सभी एक तस्वीर और एक पाठ के साथ थे इसलिए मैंने इसे निम्नलिखित तरीके से हल करने की कोशिश की।

xml फ़ाइल:

<RadioGroup
       android:layout_marginTop="40dp"
       android:layout_marginEnd="23dp"
       android:id="@+id/rgGender"
       android:layout_width="match_parent"
       android:layout_below="@id/tvCustomer"
       android:orientation="horizontal"
       android:layout_height="wrap_content">

       <LinearLayout
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:orientation="vertical"
           android:gravity="center_horizontal"
           android:layout_weight="1">
       <RadioButton
           android:id="@+id/rbMale"
           android:layout_width="80dp"
           android:layout_height="60dp"
           android:background="@drawable/male_radio_btn_selector"
           android:button="@null"
           style="@style/RadioButton.Roboto.20sp"/>

           <TextView
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:text="Male"
               style="@style/TextView.RobotoLight.TxtGrey.18sp"
               android:layout_margin="0dp"
               android:textSize="@dimen/txtsize_20sp"/>
       </LinearLayout>
       <LinearLayout
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:orientation="vertical"
           android:gravity="center_horizontal"
           android:layout_weight="1">
       <RadioButton
           android:layout_weight="1"
           android:gravity="center"
           android:id="@+id/rbFemale"
           android:layout_width="80dp"
           android:layout_height="60dp"
           android:button="@null"
           android:background="@drawable/female_radio_btn_selector"
           style="@style/RadioButton.Roboto.20sp"
           android:textColor="@color/light_grey"/>
           <TextView
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:text="Female"
               android:layout_margin="0dp"
               style="@style/TextView.RobotoLight.TxtGrey.18sp"
               android:textSize="@dimen/txtsize_20sp"/>
       </LinearLayout>
       <LinearLayout
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:orientation="vertical"
           android:gravity="center_horizontal"
           android:layout_weight="1">
       <RadioButton
           android:layout_weight="1"
           android:gravity="center"
           android:id="@+id/rbOthers"
           android:layout_width="80dp"
           android:layout_height="60dp"
           android:button="@null"
           android:background="@drawable/other_gender_radio_btn_selector"
           style="@style/RadioButton.Roboto.20sp"/>
          <TextView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:text="Other"
              android:layout_margin="0dp"
              style="@style/TextView.RobotoLight.TxtGrey.18sp"
              android:textSize="@dimen/txtsize_20sp"/>
      </LinearLayout>
   </RadioGroup>

जावा फ़ाइल में: मैंने सभी 3 रेडियो बटन पर सेटऑनकेचक्रेड चेंजलिस्टनर सेट किया है और नीचे दी गई विधि के अनुसार ओवरराइड विधि की है और यह मेरे लिए ठीक काम कर रहा है।

@Override
    public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
   switch (compoundButton.getId()){
       case R.id.rbMale:
           if(rbMale.isChecked()){
               rbMale.setChecked(true);
               rbFemale.setChecked(false);
               rbOther.setChecked(false);
           }
           break;
       case R.id.rbFemale:
           if(rbFemale.isChecked()){
               rbMale.setChecked(false);
               rbFemale.setChecked(true);
               rbOther.setChecked(false);
           }
           break;
       case R.id.rbOthers:
           if(rbOther.isChecked()){
               rbMale.setChecked(false);
               rbFemale.setChecked(false);
               rbOther.setChecked(true);
           }
           break;

   }
    }

0

MixedCompoundButtonGroup आप के लिए करते हैं!

मिश्रितकंपाउंडबटनग्रेन समूह

fun setAll() {
    for (i in 0 until childCount) {
        val child = getChildAt(i)
        setCompoundButtonListener(child)
    }
}  


private fun setCompoundButtonListener(view: View?) {
    if (view == null) return
    if (view is CompoundButton) {
        view.setOnCheckedChangeListener(compoundButtonCheckedChangedListener)
    } else if (view is ViewGroup && view !is RadioGroup) { // NOT RadioGroup!
        for (i in 0 until view.childCount) {
            setCompoundButtonListener(view.getChildAt(i))
        }
    }
}

private fun initCompoundButtonListener() {
    compoundButtonCheckedChangedListener = CompoundButton.OnCheckedChangeListener { compoundButton, isChecked ->
        setChecked(compoundButton, isChecked)
    }
}

private fun setChecked(compoundButton: CompoundButton, isChecked: Boolean) {
    if (isChecked.not()) return
    if (currentCompoundButton != null) {
        currentCompoundButton!!.isChecked = false
        currentCompoundButton = compoundButton
    } else {
        currentCompoundButton = compoundButton
    }
    checkedChangedListener?.onCheckedChanged(currentCompoundButton!!)
}

0

आप इस सरल RadioGroup एक्सटेंशन कोड का उपयोग कर सकते हैं। RadioButtons के साथ इसमें जो भी लेआउट / विचार / चित्र हैं उन्हें ड्रॉप करें और यह काम करेगा।

इसमें चयन कॉलबैक शामिल है जो चयनित रेडियोबटन को अपने सूचकांक के साथ लौटाता है और आप इंडेक्स या आईडी द्वारा प्रोग्राम को चुन सकते हैं:

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RadioButton;
import android.widget.RadioGroup;

import java.util.ArrayList;

public class EnhancedRadioGroup extends RadioGroup implements View.OnClickListener {

    public interface OnSelectionChangedListener {
        void onSelectionChanged(RadioButton radioButton, int index);
    }

    private OnSelectionChangedListener selectionChangedListener;
    ArrayList<RadioButton> radioButtons = new ArrayList<>();

    public EnhancedRadioGroup(Context context) {
        super(context);
    }

    public EnhancedRadioGroup(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        super.onLayout(changed, l, t, r, b);
        if (changed) {
            getRadioButtons();
        }
    }

    private void getRadioButtons() {
        radioButtons.clear();
        checkForRadioButtons(this);
    }

    private void checkForRadioButtons(ViewGroup viewGroup) {
        if (viewGroup == null) {
            return;
        }
        for (int i = 0; i < viewGroup.getChildCount(); i++) {
            View v = viewGroup.getChildAt(i);
            if (v instanceof RadioButton) {
                v.setOnClickListener(this);
                // store index of item
                v.setTag(radioButtons.size());
                radioButtons.add((RadioButton) v);
            }
            else if (v instanceof ViewGroup) {
                checkForRadioButtons((ViewGroup)v);
            }
        }
    }

    public RadioButton getSelectedItem() {
        if (radioButtons.isEmpty()) {
            getRadioButtons();
        }
        for (RadioButton radioButton : radioButtons) {
            if (radioButton.isChecked()) {
                return radioButton;
            }
        }
        return null;
    }

    public void setOnSelectionChanged(OnSelectionChangedListener selectionChangedListener) {
        this.selectionChangedListener = selectionChangedListener;
    }

    public void setSelectedById(int id) {
        if (radioButtons.isEmpty()) {
            getRadioButtons();
        }
        for (RadioButton radioButton : radioButtons) {
            boolean isSelectedRadioButton = radioButton.getId() == id;
            radioButton.setChecked(isSelectedRadioButton);
            if (isSelectedRadioButton && selectionChangedListener != null) {
                selectionChangedListener.onSelectionChanged(radioButton, (int)radioButton.getTag());
            }
        }
    }

    public void setSelectedByIndex(int index) {
        if (radioButtons.isEmpty()) {
            getRadioButtons();
        }
        if (radioButtons.size() > index) {
            setSelectedRadioButton(radioButtons.get(index));
        }
    }

    @Override
    public void onClick(View v) {
        setSelectedRadioButton((RadioButton) v);
    }

    private void setSelectedRadioButton(RadioButton rb) {
        if (radioButtons.isEmpty()) {
            getRadioButtons();
        }
        for (RadioButton radioButton : radioButtons) {
            radioButton.setChecked(rb == radioButton);
        }
        if (selectionChangedListener != null) {
            selectionChangedListener.onSelectionChanged(rb, (int)rb.getTag());
        }
    }
}

इसे आप लेआउट xml में उपयोग करें:

    <path.to.your.package.EnhancedRadioGroup>
       Layouts containing RadioButtons/Images/Views and other RadioButtons
    </path.to.your.package.EnhancedRadioGroup>

कॉलबैक में पंजीकरण करने के लिए:

        enhancedRadioGroupInstance.setOnSelectionChanged(new EnhancedRadioGroup.OnSelectionChangedListener() {
            @Override
            public void onSelectionChanged(RadioButton radioButton, int index) {

            }
        });
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.