Android电话拨号器实例详解
笔者正在自学android开发,随着学习的进程的加深,我会写一些小白级别的案例,一是为了保存代码和笔记,二也是为了供同样热爱android的小伙伴参考。这里写了一个小案例,叫电话拨号器。下面详细介绍如何做:
对于我们初学者来说,做案例不同于做项目,我们是为了学习所以做案例基本上就是以下三步:
1、做界面ui
2、做业务逻辑,就是具体的编程实现
3、做测试,可以用模拟器,也可用真机。(这里说一下,如果你的电脑配置不是很高,但有android的真机的话,用真机吧,模拟器真的是太慢了)
首先,做ui,大概是酱紫的:
这个很简单了,需要添加三个控件“text view”“edit text”“button”,再加一个布局,布局可以自己选我用的linearlayout。
<linearlayout android:layout_width="368dp" android:layout_height="495dp" android:layout_margintop="8dp" android:orientation="vertical" android:visibility="visible" app:layout_constrainttop_totopof="parent" tools:layout_editor_absolutex="8dp"> <textview android:id="@+id/textview" android:layout_width="match_parent" android:textsize="@dimen/textsize" android:layout_height="wrap_content" android:text="@string/text_1" /> <edittext android:id="@+id/edittext" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:inputtype="number" /> <button android:id="@+id/button" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/text_2" /> </linearlayout>
这里说一下,match_parent与wrap_content 的区别和text view中如何设置字体的大小。
match_parent的布局是填充的意思就是无论字数够不够,都会去填充到最大,效果就像上图button的长一样,而wrap_content是自适应大小,就是你要多少是多少。
text view中字体大小的设置用textsize属性,上述代码中的“@dimen/textsize”其实在values的dimens.xml中是“19sp”。
然后是做业务逻辑,那要做业务逻辑就要明白我们想要实现啥功能。从大的方面看,我们要实现打电话的功能。那我们细分一下逻辑流程,首先我们在文本框内输入号码,然后我们点击按钮就可以拨通电话,大概就是这样的过程。那我们是不是先要取到输入的号码,我们可以让点击button的时候取数据,然后进行与电话关联,来打电话。那这样我们就清楚了,我们需要做的是:
1、为button添加点击事件
2、取到输入的字符串
3、为intent对象设置call动作和数据
4、加上打电话的权限
下面是代码展示:
public class mainactivity extends appcompatactivity { private button btn_call; private edittext et_call; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); et_call=(edittext) findviewbyid(r.id.edittext); btn_call=(button)findviewbyid(r.id.button); //为button添加点击事件 btn_call.setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { //取数据 string number= mainactivity.this.et_call.gettext().tostring().trim();//trim()方法用来去掉空格 if("".equals(number)) { //土司,提示 toast mes = toast.maketext(mainactivity.this, "对不起,输入不能为空", toast.length_long); mes.show(); } //intent设置动作和数据 intent intent=new intent(); intent.setaction(intent.action_call); intent.setdata(uri.parse("tel:"+number)); startactivity(intent); } }); } }
记得加权限不然会报错:
最后是测试,我用的是真机测试的。模拟器太慢,真机要快很多。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。