Android开发之创建可点击的Button实现方法
本文实例讲述了android创建可点击的button实现方法。分享给大家供大家参考,具体如下:
感觉到自己有必要学习下手机开发方面的知识,不论是为了以后的工作需求还是目前的公司项目。
当然,任何新东西的开始,必然伴随着第一个helloworld,android学习也不例外。既然才开始,我就不做过多的描述了。
对于android开发的ide:adt来说,打开的第一眼有点迷糊,不过看了网上各种目录结构的介绍,慢慢的就明白了,做这个实例,我们尤其需要关注两个地方,一个是src目录,一个就是res目录下的layout目录。src目录放置的是code-behind源码,而layout目录放置的则是xml前台配置文件。
既然我们要实现的功能是点击按钮,然后edittext中显示“hello world!”。让我们先打开layout文件,拖放一个button上去,然后拖放一个edittext上去,最后的xml文件结构如下:
<relativelayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingbottom="@dimen/activity_vertical_margin" android:paddingleft="@dimen/activity_horizontal_margin" android:paddingright="@dimen/activity_horizontal_margin" android:paddingtop="@dimen/activity_vertical_margin" tools:context=".mainactivity" > <button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:clickable="true" android:text="button" /> <edittext android:id="@+id/edittext1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignbaseline="@+id/button1" android:layout_alignbottom="@+id/button1" android:layout_torightof="@+id/button1" android:text="edittext" /> </relativelayout>
然后在后台代码文件中,我们需要引入两个命名空间:
import android.widget.button; import android.widget.edittext;
全部代码如下:
package com.example.helloworld; import android.os.bundle; import android.app.activity; import android.view.menu; import android.view.view; import android.widget.button; import android.widget.edittext; public class mainactivity extends activity { private button mybutton; private edittext mytext; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); mybutton = (button)findviewbyid(r.id.button1); mytext = (edittext)findviewbyid(r.id.edittext1); mybutton.setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { // todo auto-generated method stub mytext.settext("hello world!"); } }); } @override public boolean oncreateoptionsmenu(menu menu) { // inflate the menu; this adds items to the action bar if it is present. getmenuinflater().inflate(r.menu.main, menu); return true; } }
然后点击运行按钮,在虚拟机界面中点击按钮,得到的结果如下图:
这节就到这里了,后面我们会继续探秘。
更多关于android相关内容感兴趣的读者可查看本站专题:《android调试技巧与常见问题解决方法汇总》、《android开发入门与进阶教程》、《android多媒体操作技巧汇总(音频,视频,录音等)》、《android基本组件用法总结》、《android视图view技巧总结》、《android布局layout技巧总结》及《android控件用法总结》
希望本文所述对大家android程序设计有所帮助。
上一篇: Maven 常用插件的详细整理
推荐阅读