博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android的复选框的详细开发案例分析
阅读量:6292 次
发布时间:2019-06-22

本文共 3439 字,大约阅读时间需要 11 分钟。

在本教程中,我们将向您展示如何创建XML文件中的3个复选框,并论证了听者的使用检查–选中或取消选中复选框的状态。

P.S这个项目是在Eclipse 3.7开发,并与Android 2.3.3测试。

1。自定义字符串

Open “res/values/strings.xml” file, add some user-defined string.

res/values/strings.xml文件:

<?xml version="1.0" encoding="utf-8"?>

<resources>
<string 姓名=“hello“>Hello World, MyAndroidAppActivity!</string>
<string 姓名=“app_name“>MyAndroidApp</string>
<string 姓名=“chk_ios“>IPhone</string>
<string 姓名=“chk_android“>Android</string>
<string 姓名=“chk_windows“>Windows Mobile</string>
<string 姓名=“btn_display“>Display</string>
</resources>
2。复选框
Open “res/layout/ main.xml” file, add 3 “复选框” and a button, inside the 线性布局.

文件:res/layout/ main.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android=“
安卓layout_width=“fill_parent“
安卓layout_height=“fill_parent“
安卓orientation=“vertical“ >

<CheckBox    安卓id=“@+id/chkIos“    安卓layout_width=“wrap_content“    安卓layout_height=“wrap_content“    安卓text=“@string/chk_ios“ ><CheckBox    安卓id=“@+id/chkAndroid“    安卓layout_width=“wrap_content“    安卓layout_height=“wrap_content“    安卓text=“@string/chk_android“    安卓checked=“true“ ><CheckBox    安卓id=“@+id/chkWindows“    安卓layout_width=“wrap_content“    安卓layout_height=“wrap_content“    安卓text=“@string/chk_windows“ ><Button    安卓id=“@+id/btnDisplay“    安卓layout_width=“wrap_content“    安卓layout_height=“wrap_content“    安卓text=“@string/btn_display“ >复制代码

</LinearLayout>

使复选框默认被选中
Put android:checked="true" inside checkbox element to make it checked bu default. In this case, “Android” option is checked by default.
三.代码代码
Attach listeners inside your activity “onCreate()” method, to monitor following events :

If checkbox id : “chkios” is checked, display a floating box with message “Bro, try Android”.

如果按钮被点击时,显示一个浮动框和复选框的状态显示。
文件:myandroidappactivity.java

旅行包 com。mkyong。android

进口 android。app。Activity

进口 android。os。Bundle
进口 android。view。View
进口 android。view。View。OnClickListener
进口 android。widget。Button
进口 android。widget。CheckBox
进口 android。widget。Toast

公共 类 myandroidappactivity 延伸 活动 {

私人 CheckBox chkIos, chkAndroid, chkWindows

私人 Button btnDisplay

@Override

公共 无效 创建时的回调函数(Bundle savedInstanceState) {
超级的。创建时的回调函数(savedInstanceState)
setContentView(R。layout。main)

addlisteneronchkios()addlisteneronbutton()复制代码

}

公共 无效 addlisteneronchkios() {

chkIos = (CheckBox) findViewById(R。id。chkIos)chkIos。setonclicklistener(新 onclicklistener() {  @Override  公共 无效 onclick(View v) {            / /是chkios检查吗?    如果 (((CheckBox) v)。把关()) {        Toast。maketext(MyAndroidAppActivity。这,            “兄弟,尝试Android:)”, Toast。LENGTH_LONG)。商展()    }  }})复制代码

}

公共 无效 addlisteneronbutton() {

chkIos = (CheckBox) findViewById(R。id。chkIos)chkAndroid = (CheckBox) findViewById(R。id。chkAndroid)chkWindows = (CheckBox) findViewById(R。id。chkWindows)btnDisplay = (Button) findViewById(R。id。btnDisplay)btnDisplay。setonclicklistener(新 onclicklistener() {      clicked button is when /运行  @Override  公共 无效 onclick(View v) {    StringBuffer result = 新 StringBuffer()    result。追加(“iPhone检查:”)。追加(chkIos。把关())    result。追加(“nandroid检查:”)。追加(chkAndroid。把关())    result。追加(“移动nwindows检查:\”)。追加(chkWindows。把关())    Toast。maketext(MyAndroidAppActivity。这, result。toString(),            Toast.LENGTH_LONG).show();  }});复制代码

}

}

4. Demo

Run the application.

1. Result :

android checkbox demo 1

2. If “IPhone” is checked :

android checkbox demo2

3. Checked “IPhone” and “Windows Mobile”, later, click on the “display” button :

android checkbox demo3
原文地址:

转载地址:http://kqkta.baihongyu.com/

你可能感兴趣的文章
MariaDB/Mysql 批量插入 批量更新
查看>>
ItelliJ IDEA开发工具使用—创建一个web项目
查看>>
solr-4.10.4部署到tomcat6
查看>>
切片键(Shard Keys)
查看>>
淘宝API-类目
查看>>
virtualbox 笔记
查看>>
Git 常用命令
查看>>
驰骋工作流引擎三种项目集成开发模式
查看>>
SUSE11修改主机名方法
查看>>
jdk6.0 + Tomcat6.0的简单jsp,Servlet,javabean的调试
查看>>
Android:apk签名
查看>>
2(2).选择排序_冒泡(双向循环链表)
查看>>
MySQL 索引 BST树、B树、B+树、B*树
查看>>
微信支付
查看>>
CodeBlocks中的OpenGL
查看>>
短址(short URL)
查看>>
第十三章 RememberMe——《跟我学Shiro》
查看>>
mysql 时间函数 时间戳转为日期
查看>>
索引失效 ORA-01502
查看>>
Oracle取月份,不带前面的0
查看>>