編輯:關於Android編程
本文將通過radiogroup和radiobutton實現組內信息的單選,
其中radiogroup就是將radiobutton進行分組,同一管理和控制
同時實現默認選中情況,獲取默認值.效果圖
具體實例如下:<喎?/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+MS5hY3Rpdml0eV9tYWluLnhtbDwvcD4KPHA+PHByZSBjbGFzcz0="brush:java;">
2.strings.xml
RadioGroupDemo 請選擇你的性別: Settings 男 女
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); defaultStr = this.getResources().getString(R.string.please_selected); seletedTv = (TextView) this.findViewById(R.id.diplay_seleted_item_tv); sexRg = (RadioGroup) this.findViewById(R.id.sex_rg); manRb = (RadioButton) this.findViewById(R.id.man_rb); womanRb = (RadioButton) this.findViewById(R.id.woman_rb); manRb.setChecked(true); seletedTv.setText(defaultStr + manRb.getText().toString()); sexRg.setOnCheckedChangeListener(new OnCheckedChangeListener(){ @Override public void onCheckedChanged(RadioGroup rg, int checkedId) { // TODO Auto-generated method stub if(checkedId == manRb.getId()){ seletedTv.setText(defaultStr + manRb.getText().toString()); }else if(checkedId == womanRb.getId()){ seletedTv.setText(defaultStr + womanRb.getText().toString()); }else{ seletedTv.setText(defaultStr); } } }); }
一、問題描述 上一次我們使用百度地圖實現基本的定位功能,接下來我們繼續實現搜索和定位,並使用LocationOverlay繪制定位位置,同時展示如何使用自定義圖標繪制並
Cocos2d-x 3.0 - Eclipse上構建一個Android項目2014年4月30日 4月末 本篇繼續介紹Cocos2d-x 3.0的一些基礎內容,前面一篇博客
本節引言: 本節主要介紹的是Android系統服務中的---AlarmManager(鬧鐘服務), 除了開發手機鬧鐘外,更多的時候是作為一個全
Activity:作為四大組件之一,也是與用戶交互最多的組件,因此為了更好的交互效果,了解Activity的生命周期,正確分配每個階段該完成的工作就顯得十分必要,例如: