普通按钮
普通按钮xml设置:
<Button
android:id="@+id/btn"
android:layout_width="300dp"
android:layout_height="40dp"
android:layout_gravity="center"
android:text="我也要发布朋友圈"
android:textColor="#000000"/>
①单击普通按钮弹出提示框:
Button button = (Button) findViewById(R.id.btn); //获取按钮类Button的实例对象,取名为button
button.setOnClickListener(new View.OnClickListener() { //设置按钮事件监听器OnClickListener,传入的参数是一个匿名内部类
@Override
public void onClick(View view) { //重写onClick方法,方法内写事件发生后将要执行的内容
Toast.makeText(MainActivity.this,"跳转到编辑发布内容界面",Toast.LENGTH_SHORT).show(); //弹出消息提示框
}
});
注意点:
①findViewById(R.id.[id-name])方法创建Button对象并赋予对应按钮(实例化)。
②实例button调用setOnClickListerner()方法,创建单击事件监听器。
③setOnClickListerner()方法传入一个匿名内部类View.OnClickListener(),重写onClick()方法。
④单击按钮以后我们想要做的事写在onClick()方法内。
⑤Toast.makeText()方法弹出提示框,最后别忘调用.show(),具体传入参数见手册。
图片按钮
图片按钮ying的xml设置:(ying是一张图片,存放在mipmap中)
<ImageButton
android:id="@+id/ying"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#0000"
android:src="@mipmap/ying"
/>
②单击图片按钮弹出提示框:
ImageButton picturebtn = (ImageButton) findViewById(R.id.ying); //图片按钮使用ImageButton
picturebtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Toast.makeText(MainActivity.this,"访问“荧”的个人主页面",Toast.LENGTH_SHORT).show();
}
});
注意点:
①background="#0000"用意是去除按钮背景的灰色,如果图片是彩色的那将会非常不美观,建议写上。
②使用ImageButton类
单选按钮
单选按钮xml配置:
<RadioGroup
android:id="@+id/choosen1"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="喜欢"/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="不喜欢"/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="没有了解过"/>
</RadioGroup>
MainActivity中全局实例化:
RadioGroup rg; //为了在匿名内部类中使用,RadioGroup实例的创建是全局的
③单击其他按钮获取RadioGroup的值:
rg = (RadioGroup) findViewById(R.id.choosen1); //通过id获取单选按钮实例对象
Button submitbutton = (Button) findViewById(R.id.submit1); //找到提交按钮submitbutton
submitbutton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
for(int i=0; i<rg.getChildCount(); i++) //遍历按钮
{
RadioButton rb = (RadioButton) rg.getChildAt(i); //rb实例存放当前遍历的按钮
if(rbnow.isChecked()) //判断是否选中该按钮
{
Toast.makeText(MainActivity.this,"提交成功,你选择了" + rb.getText(),Toast.LENGTH_SHORT).show();
}
}
}
});
※提醒:
全局实例化的时候如果直接通过id获取,而不在onCreate()方法里面获取,即:
RadioGroup rg = (RadioGroup) findViewById(R.id.choosen1);
这样可能会出现app无法运行的情况(开启时闪退)。