Skip to content

Instantly share code, notes, and snippets.

View DesigningKnights's full-sized avatar

Timothy R. Winters DesigningKnights

View GitHub Profile
@DesigningKnights
DesigningKnights / UnboundRadioGroup.java
Last active May 23, 2018 02:37
An "unbound" radio group. It acts like a radio group, but allows you to place your radio buttons anywhere you wish in your layout. It keeps track of which buttons should act as a group.
package com.designingknights.unboundradiogroup;
import android.app.Activity;
import android.support.annotation.NonNull;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RadioButton;
/**
* Created by Timothy Winters on 5/23/2018.