Android自定义控件的使用
2010-05-31 02:34:00 来源:WEB开发网核心提示:18. radio.setChecked(true);19. }else{20. radio.setChecked(false);21. }22. }23. }24. // 获取子类的值25. public void getChildValue(){26. int n = this.getChildCount();27
18. radio.setChecked(true);
19. }else{
20. radio.setChecked(false);
21. }
22. }
23. }
24. // 获取子类的值
25. public void getChildValue(){
26. int n = this.getChildCount();
27. for(int i=0;i< n;i++){
28. RadioButton radio = (RadioButton)this.getChildAt(i);
29. if(radio.isChecked()){
30. this.mValue=radio.getValue();
31. }
32. }
33. }
34.
35. public void setValue(String value) {
36. this.mValue = value;
37. setChildValue();
38. }
39.
40. public String getValue(){
41. getChildValue();
42. return this.mValue;
43. }
44. }
更多精彩
赞助商链接