라디오 버튼의 텍스트를 프로그래밍 방식으로 위에서 아래로 정렬 할 수있는 방법이 있습니까? 라디오 버튼 텍스트를 프로그래밍 방식으로
제가 라디오 그룹final RadioButton[] rb = new RadioButton[5];
RadioGroup rg = new RadioGroup(getActivity()); //create the RadioGroup
rg.setOrientation(RadioGroup.VERTICAL);//or RadioGroup.VERTICAL
rg.setLayoutParams(radioparams);
for (int i = 0; i < 5; i++) {
rb[i] = new RadioButton(getActivity());
rb[i].setText("Radiobtn " + i);
rb[i].setId(i + 100);
rg.addView(rb[i]);
}
layout.addView(rg);
을 만들기위한 다음 코드를 사용하지만, 각 버튼의 우측으로 텍스트를 얻는다.
https://stackoverflow.com 같은 프로그래밍 방식
RadioButton
를 추가보다이같은 레이아웃을 당신이 트릭
을 할 수있는이 방법을 시도/questions/19102159/radiobutton-with-text-above-button –
프로그래밍 방식으로 구현하고 싶습니다. –
사용자 정의 라디오 버튼을 작성하여 뷰에 동적으로 추가하여이를 수행 할 수 있습니다. 참조 : https://crosp.net/blog/android/creating-custom-radio-groups-radio-buttons-android/ – Saneesh