欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android電話撥號(hào)器實(shí)現(xiàn)方法

 更新時(shí)間:2015年09月19日 11:19:53   作者:Ruthless  
這篇文章主要介紹了Android電話撥號(hào)器實(shí)現(xiàn)方法,可實(shí)現(xiàn)模擬Android電話撥號(hào)的功能,非常具有實(shí)用價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了Android電話撥號(hào)器實(shí)現(xiàn)方法。分享給大家供大家參考。具體如下:

以下案例模擬android電話撥號(hào)器的實(shí)現(xiàn)

AndroidManifest.xml清單列表

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.ljq.phone"
  android:versionCode="1"
  android:versionName="1.0">
 <application android:icon="@drawable/icon" android:label="@string/app_name">
  <activity android:name=".MainActivity"
     android:label="@string/app_name">
   <intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
   </intent-filter>
  </activity>
 </application>
 <uses-sdk android:minSdkVersion="7" />
 <uses-permission android:name="android.permission.CALL_PHONE"/>
</manifest>

main.xml布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical" android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <TextView android:layout_width="fill_parent"
  android:layout_height="wrap_content" 
  android:text="請(qǐng)輸入電話號(hào)碼" />
 <EditText android:layout_width="fill_parent"
  android:layout_height="wrap_content" 
  android:id="@+id/phone" />
 <Button android:layout_width="wrap_content"
  android:layout_height="wrap_content" 
  android:text="拔打此號(hào)碼"
  android:id="@+id/button" />
</LinearLayout>

MainActivity類:

package com.ljq.phone;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class MainActivity extends Activity {
 private EditText phone=null;
 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  phone=(EditText)this.findViewById(R.id.phone);
  Button button=(Button)this.findViewById(R.id.button);
  button.setOnClickListener(new View.OnClickListener(){
   public void onClick(View v) {
    String tel=phone.getText().toString();
    //方法一, 使用Intent目的: 激活android組件
    //Intent intent=new Intent();
    //intent.setAction("android.intent.action.CALL");
    //intent.setData(Uri.parse("tel:"+tel));
    //方法二
    Intent intent=new Intent("android.intent.action.CALL", Uri.parse("tel:"+tel));
    //方法的內(nèi)部會(huì)自動(dòng)為intent對(duì)象設(shè)置類別:android.intent.category.DEFAULT
    startActivity(intent);
   }
  });
 }
}

運(yùn)行結(jié)果:

界面初始化:

電話撥打效果:

希望本文所述對(duì)大家的Android程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論