`
yummyyoung
  • 浏览: 5611 次
社区版块
存档分类
最新评论

Android入门学习(3)——手机简单通信

阅读更多

手机的通信功能大致分三种:打电话、发短信、发邮件

打电话:

首先确定布局:垂直布局中含输入框和拨号键盘,关于拨号键盘的布局,老师推荐了Table Layout和Table Row合作的方式,有同学提出可以用垂直布局嵌套水平布局的方式,这样12个键就可以定义为12个button,而且button自带点击变色功能。

以下为布局界面: 

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    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="com.example.dialer.MainActivity" >
 
    <EditText
        android:layout_width="fill_parent"
        android:layout_height="80dip"
        android:layout_marginTop="20dip"
        android:ems="11"
        android:id="@+id/dialer"
        android:background="#C6E2FF" >
     </EditText>
      <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginTop="120dip"
        android:orientation="vertical" >
        
        <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:orientation="horizontal" >

             <Button
                 android:id="@+id/button1"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:textSize="20dp"
                 android:onClick="digital_click"
                 android:text="1" />

             <Button
                 android:id="@+id/button2"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="digital_click"
                 android:text="2" />

             <Button
                 android:id="@+id/button3"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="digital_click"
                 android:text="3" />
       	 </LinearLayout>
       	 
        
        <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:orientation="horizontal" >

             <Button
                 android:id="@+id/button4"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="digital_click"
                 android:text="4" />

             <Button
                 android:id="@+id/button5"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="digital_click"
                 android:text="5" />

             <Button
                 android:id="@+id/button6"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="digital_click"
                 android:text="6" />
       	 </LinearLayout>
       	 
       	<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:orientation="horizontal" >

             <Button
                 android:id="@+id/button7"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="digital_click"
                 android:text="7" />

             <Button
                 android:id="@+id/button8"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="digital_click"
                 android:text="8" />

             <Button
                 android:id="@+id/button9"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="digital_click"
                 android:text="9" />
       	 </LinearLayout>
       <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:orientation="horizontal" >

             <Button
                 android:id="@+id/button10"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="digital_click"
                 android:text="*" />

             <Button
                 android:id="@+id/button11"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="digital_click"
                 android:text="0" />

             <Button
                 android:id="@+id/button12"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="digital_click"
                 android:text="#" />
       	 </LinearLayout>
       	 
       <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:orientation="horizontal" >

             <Button
                 android:id="@+id/button13"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick=""
                 android:text="拨出" />
              <Button
                 android:id="@+id/button14"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick=""
                 android:text="添加" />

            <Button
                 android:id="@+id/button15"
                 android:layout_width="fill_parent"
                 android:layout_height="80dp"
                 android:layout_weight="1"
                 android:onClick="delete"
                 android:text="回退" />
       	 </LinearLayout>
   </LinearLayout>
</RelativeLayout>

 布局确定好之后要在MainActivity中实现对按钮的监听和按下拨出键后跳转到拨号界面的功能。其中跳转后的拨号界面是Android自带的,调用API即可实现intent功能。

Java代码如下:

public class MainActivity extends Activity {
	EditText show;//显示框的定义
	StringBuffer num=new StringBuffer();//用于接收输入数字
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);//保存Activity的状态
		setContentView(R.layout.activity_main);
		show=(EditText)findViewById(R.id.dialer);
	}
	//监听按键,然后将数字转化为字符添加到StringBuffer里面
	public void digital_click(View view){
		
		Button btnDigital=(Button) view;
		String text=btnDigital.getText().toString();
		num.append(text);
		display();
		
	}
	
	//将拨号的数字显示到编辑框上	
	private void display() {
		// TODO Auto-generated method stub
		show.setText(num.toString());
	}
	
	//删除功能
	public void delete(View view){
		if(num.length()>=1){
			num.delete(num.length()-1, num.length());			
		}
		if(num.length()==0){
			Toast toast=Toast.makeText(this,"请输入号码", 100);
			toast.show();
			display();
		}
		show.setText(num);
	}
	//接下来就是重头戏
	//拨号键绑定方法
	public void dial(View view){
		EditText text=(EditText)findViewById(R.id.dialer);
		String number=text.getText().toString();
		if(num.length()==0){
			Toast toast=Toast.makeText(this,"请输入号码", 100);
			toast.show();
			display();
		}
		else{
			Intent intent=new Intent();
			intent.setAction(Intent.ACTION_CALL);//设置事件跳转到系统默认的拨号页面
			intent.setData(Uri.parse("tel:"+number));//传送数据
			startActivity(intent);
			//方法内部会自动为Intent添加类别:android.intent.categoty.DEFAULT
		}				
	}
}
 在完成拨号键绑定方法之前,虚拟机上可以正常使用拨号并监听Button以及显示号码功能,在java代码运行之后出现了这样的界面

 现在还在调试中。

 

  • 大小: 47 KB
分享到:
评论
1 楼 梳子不爱头发 2017-07-02  
添加权限了么

相关推荐

    Android C++高级编程——使用NDK完整版

    Android拥有广大的用户群体,市场前景也很好,所以学习Android的人很多。但是因为Android很容易上手,如果只是单纯的学一些简单的东西很明显没有竞争力。所以必须学一点深层次的东西来提升自己的核心竞争力。第1章 ...

    android系统入门了解——main.rar

    在Android系统入门了解的过程中,首先我们要理解Android是一个开源的操作系统,主要应用于移动设备,如智能手机和平板电脑。它由Google主导开发,基于Linux内核,提供了丰富的API和工具供开发者构建应用程序。"main....

    Android编程快速入门——字节跳动.zip

    本资料“Android编程快速入门——字节跳动”旨在帮助新手理解Android开发的基础概念,并提供实际操作的指导。 一、Android简介 Android是由Google领导的开放源代码操作系统,广泛应用于智能手机和平板电脑。它基于...

    Android开发编程从入门到精通——Android程序员必备

    ### Android开发编程从入门到精通——Android程序员必备 #### 一、什么是Android及发展历程 - **定义**:Android是一种基于Linux内核的操作系统,主要用于移动设备如智能手机和平板电脑等。 - **历史背景**: - ...

    IBM android技术文档——从入门到精通.rar

    在IBM的"Android技术文档——从入门到精通"压缩包中,包含了丰富的资源,适合对Android开发感兴趣的初学者和有经验的开发者。这些文档涵盖了Android平台的基础知识、高级特性和实践应用,旨在帮助读者全面理解并掌握...

    Android 开发入门 —— 环境搭建

    这些都是开发Android应用的基础,掌握这些知识后,你便可以进一步深入学习Android编程,如布局设计、组件使用、数据存储、网络通信等更高级的主题。持续实践和学习,你将逐渐成长为一名熟练的Android开发者。

    【入门】Android自定义控件——验证码

    这篇博文"【入门】Android自定义控件——验证码"旨在引导开发者如何创建一个专用于显示和交互的验证码控件。验证码通常用于验证用户身份,防止自动化程序进行恶意操作,如注册、登录等。 验证码控件的基本要素包括...

    Android课件 入门学习

    【Android入门学习】系列课程是针对初学者设计的,旨在帮助你快速掌握Android应用开发的基础知识。本课程涵盖了Android UI设计、数据管理以及组件交互等多个关键领域,通过一系列PPT学习资料,让你逐步建立起Android...

    第一行代码Android学习练习代码7

    在Android开发中,“第一行代码”是一本广受欢迎的入门书籍,作者郭霖通过简洁易懂的方式介绍了Android开发的基础知识。这个练习代码7应该是针对书中第六章内容的实践部分,主要涉及数据持久化这一核心主题。 ...

    Android开发从入门到精通【视频教程+课程源码】.rar

    在Android开发领域,掌握基础知识是至关重要的,而这套"Android开发从入门到精通【视频教程+课程源码】"提供了一条系统学习的路径。它不仅包括了详细的视频讲解,还有配套的源代码,旨在帮助初学者从零开始,逐步...

    Android项目开发范例大全 光盘代码 完整版

    第1章 Android基础入门 第2章 “天天向上”——桌面小插件与数据库存储的学习 第3章 “NotePad”——界面运用与数据处理 第4章 “SpinLock”——画图与替代解锁界面的尝试 第5章 “BlueControl”——蓝牙通信与...

    Android项目开发范例大全.rar

    第1章 Android基础入门 第2章 “天天向上”——桌面小插件与数据库存储的学习 第3章 “NotePad”——界面运用与数据处理 第4章 “SpinLock”——画图与替代解锁界面的尝试 第5章 “BlueControl”——蓝牙通信与感应...

    Android快速入门.pdf

    总之,《Android快速入门》是一本全面而实用的教程,它不仅涵盖了Android开发的基础知识,还为你提供了一个逐步深入的学习路径。通过阅读和实践书中的内容,你将具备开发简单Android应用的能力,并为进一步深入学习...

    Android开发入门教程pdf电子书

    【Android开发入门教程】是一本面向初学者的PDF电子书,旨在帮助读者系统地学习和理解Android应用程序开发的基础知识。这本书以高清格式呈现,确保文字清晰,阅读体验良好,非常适合自学或者作为教学辅助资料。 ...

    android边学边记——HelloAndroid

    总结起来,"HelloAndroid"是一个基础的Android入门项目,它涵盖了Android应用的基本元素:Activity、布局设计、生命周期管理和简单用户交互。通过深入学习和实践,开发者可以逐步掌握更复杂的Android开发技能,例如...

    Google Android SDK开发范例大全——示例代码

    《Google Android SDK开发范例大全——示例代码》是一份针对Android应用开发者的宝贵资源,主要涵盖08至10章节的内容。这份资料通过丰富的示例代码,详细讲解了Android SDK中的关键技术和实践方法,旨在帮助开发者...

    一本最权威的android入门教程

    "一本最权威的Android入门教程"无疑为初学者提供了一条清晰的学习路径。这本教程可能涵盖了从基础概念到实际应用开发的全方位知识,旨在帮助读者快速理解Android系统的工作原理,并具备开发简单Android应用程序的...

    android入门教程课件

    【Android入门教程】\n\nAndroid,作为全球最流行的移动操作系统之一,是Google主导的开源项目,为开发者提供了丰富的平台来构建创新应用。本入门教程旨在帮助初学者快速理解和掌握Android开发的基础知识。\n\n一、...

Global site tag (gtag.js) - Google Analytics