ラジオボタンのチェック箇所を非表示にする

Layoutファイルのラジオボタンの定義に "android:button"要素をいれ、nullを設定するだけです。

サンプル

<RadioButton
	android:id="@+id/radioButton"
	android:layout_width="wrap_content"
	android:layout_height="wrap_content"
	android:button="@null"
/>