标签:android
电话拨号器:
权限:android.permission.CALL_PHONE
布局代码:
<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"
tools:context=".MainActivity">
<EditText
android:id="@+id/et_number"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:ems="10"
android:inputType="phone">
<requestFocus />
</EditText>
<Button
android:id="@+id/bt_dail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/et_number"
android:text="@string/dail" />
</RelativeLayout>
程序代码:
package com.example.dail;
import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.text.TextUtils;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//加载布局文件
setContentView(R.layout.activity_main);
//查找按钮
Button bt_dail=(Button)findViewById(R.id.bt_dail);
//给按钮注册点击事件
bt_dail.setOnClickListener(new MyListener());
}
private class MyListener implements OnClickListener
{
/**
* 按钮被点击的方法
*/
@Override
public void onClick(View arg0) {
EditText et_number=(EditText)findViewById(R.id.et_number);
String number=et_number.getText().toString();
//判断输入的是否为空
if(TextUtils.isEmpty(number))
{
//Toast.LENGTH_SHORT该信息显示一秒钟
Toast.makeText(MainActivity.this, "号码不能为空", Toast.LENGTH_SHORT).show();
return;
}
//意图做一件什么事情
Intent intent=new Intent();
//意图对应的动作
intent.setAction(Intent.ACTION_CALL);
//执行动作的对象
intent.setData(Uri.parse("tel:"+number));
//开启一个新的界面执行该动作
startActivity(intent);
}
}
}
版权声明:博主原创文章,转载请说明出处。http://blog.csdn.net/dzy21
标签:android
原文地址:http://blog.csdn.net/dzy21/article/details/47321569