文本控件- TextView- EditText按钮控件- Button- ImageButton状态开关按钮- ToggleButton单选与复选按钮- CheckBox- RadioButton图片控件- ImageView时钟控件- AnalogClock- DigitalClock日期与时间...
分类:
移动开发 时间:
2015-05-23 08:47:36
阅读次数:
151
public class MyListView extends LinearLayout{ private LayoutInflater inflater; private ToggleButton toggle; private LinearLayout linear; public MyList...
分类:
其他好文 时间:
2015-05-10 21:56:53
阅读次数:
146
MainActivity.java:import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.CompoundButton;
import android.widget.CompoundBut...
分类:
移动开发 时间:
2015-04-17 20:33:20
阅读次数:
129
ToggleButton可以认为是一个开关,每单击依次一次在“开”和“关”之间进行切换。
ToggleButton的几个常用方法:
1.setTextOff()
当未被选中时,显示的文本。
2.setTextOn()
当被选中时,显示的文本。
3.setCheaked()
设置控件的状态。
4.setBackgroundDrawable()
设置控件的的背景。
...
分类:
移动开发 时间:
2015-04-17 01:16:53
阅读次数:
172
状态开关按钮togglebutton和开关switch 状态开关按钮togglebutton和开关switch是由button派生出来的,本质也是按钮,支持BUtton的各种属性,从功能上看,ToggleButton、Switch与CheckBox非常的相似,他们都可以提供两种状态,不过更常用的是切...
分类:
其他好文 时间:
2015-04-05 18:48:49
阅读次数:
114
一、事件监听对于普通的Button,对其进行事件监听Google官方给出了常见的三种监听方式:1、对每一个button设置事件监听器button.setOnClickListener(View.OnclickListener listener);此种方法当button按钮较多时代码显得多、乱、不够简...
分类:
数据库 时间:
2015-03-03 18:08:22
阅读次数:
9720
案例演示 此案例实现思路:通过ToggleButton控件,ImageView控件实现---xml代码:----java代码:1. 正如普通控件的使用思路(首先定义控件、初始化控件)private ToggleButton tb;private ImageView img;tb=(ToggleBut...
分类:
移动开发 时间:
2015-02-26 20:10:37
阅读次数:
148
1. Button鼠标点击的监听事件--setOnClickListener2. CheckBox, ToggleButton , RadioGroup的改变事件--setOnCheckedChangeListenerEg:3. onPageChangeListener()----用来监控ViewP...
分类:
移动开发 时间:
2015-02-26 20:01:36
阅读次数:
139
1.案例效果图 选中 未选中 2.准备相关的资源 2.1准备图片(一般放在drawable-hdpi目录下) toggle_btn_checked.png toggle_btn_unchecked.png 2.2准备透明的颜色 #00000000 3.样式文件(toggle_button.xml) ...
分类:
其他好文 时间:
2015-02-23 10:50:03
阅读次数:
163