38. @Override
39. public void onTextChanged(CharSequence s, int start, int before, int count) { 40. SwitcherActivity.this.myTextSwitcher.setText(SwitcherActivity.this.myDigitalClo
ck.getText()); 41. } 42.
43. @Override
44. public void beforeTextChanged(CharSequence s, int start, int count, int after) { 45. } 46.
47. @Override
48. public void afterTextChanged(Editable s) { 49. } 50. }; 51. } Xml代码
1.
2. 6. android:gravity=\> 7. 8. 12. 13. 18. 20. android:layout_height=\ /> 21. 22.
五、基本界面控件-2按钮控件
5.2 按钮控件
Button的子类
5.2.1 Button
图5.2.1Button
android.widget.Button最常用的按钮,继承自android.widget.TextView,在android.widget包中。
他的常用子类CheckBox, RadioButton, ToggleButton。
通常用法:
super.findViewById(id)得到在layout中声明的Button的引用,setOnClickListener(View.OnClickListener)添加监听。然后再
View.OnClickListener监听器中使用v.equals(View)方法判断哪个按钮被按下,进行分别处理。
5.2.2 CheckBox
图5.2.2CheckBox
android.widget.CheckBox复选按钮,继承自android.widget.CompoundButton,在android.widget包中。 常用方法:
isChecked()检查是否被选中。
监听按钮状态更改,需要添加
setOnCheckedChangeListener(CompoundButton.OnCheckedChangeListener);
5.2.3 RadioButton
图5.2.3RadioButton
android.widget. RadioButton单选按钮,继承自
android.widget.CompoundButton,在android.widget包中。
通常用法:
单选按钮要声明在RadioGroup,RadioGroup是流式布局android.widget.LinearLayout的子类。
单选按钮状态更改的监听,是要给他的RadioGroup添加
setOnCheckedChangeListener(RadioGroup.OnCheckedChangeListener)监听器。注意监听器类型和CheckBox是不一样的。
5.2.4 ToggleButton
图5.2.4ToggleButton
android.widget. ToggleButton开关形式的按钮,继承自
android.widget.CompoundButton,在android.widget包中。
常用属性设置:
android:textOn=\ android:textOff=\ 选择状态文字 未选状态文字 五、基本界面控件-3图片控件
5.3 图片控件
5.3.1 ImageView
图5.3.1ImageView
android.widget.ImageView图片控件,继承自android.view.View,在android.widget包中。
最简单的使用方法。src设置图片路径,可引用drawable的图片。
Xml代码
1.
动态声明ImageView,设置src。
Java代码
1. 2. 3. 4.
try {
ImageView imageView = new ImageView(this);
InputStream inputStream = super.getAssets().open(\
imageView.setImageDrawable(Drawable.createFromStream(inputStream, \