溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android編程簡單實現(xiàn)撥號器功能的方法

發(fā)布時間:2020-10-01 05:15:23 來源:腳本之家 閱讀:186 作者:青蛙小王子 欄目:移動開發(fā)

本文實例講述了Android編程簡單實現(xiàn)撥號器功能的方法。分享給大家供大家參考,具體如下:

學習Android已經(jīng)有2天時間了,沒學習的時候覺得android可能很枯燥,但是學過之后我發(fā)覺其實這個比什么javaweb好玩多了。學習android可以見到一些很有趣的東西,這里呢也建議學習javaME的人不要在煎熬了,學習android吧。在寫程序之前也需要知道android的工作原理

1.獲取組件清單
2.登記或注冊組件
3.將組件封裝成意圖
4.把意圖交給意圖處理器進行處理
5.把界面顯示給用戶

看過網(wǎng)上android的開發(fā)流程,好多人都說可以把界面和activity并行開發(fā),因為android也是遵循mvc設計模式,也就是說android也可有自己的業(yè)務層DAO。由于android發(fā)展歷史比較短,目前的分工還不是很明確,對于界面和后臺可以選擇其中一個作為自己的發(fā)展方向,對于android的任何一塊來說薪水都比較高。廢話就不多說了,來一步一步的實現(xiàn)功能吧。

1.編寫“文字”的配置文件,默認的配置文件是strings.xml,這里也可以重新寫一個配置文件,格式要保持一致就來寫這個配置文件(mystring.xml)吧

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="tip">輸入號碼</string>
  <string name="bottonname">撥打</string>
</resources>

2.編寫控件

<?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="@string/tip" />
  <EditText android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/phonenumber"/>  <!-- 顯示一個文本框 id為phonenumber-->
  <Button android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/bottonname"
    android:id="@+id/botton"
    />  <!-- 顯示一個按鈕 -->
</LinearLayout>

為了讓大家看的更清楚,我把R文件的內容也給大家

/* AUTO-GENERATED FILE. DO NOT MODIFY.
 *
 * This class was automatically generated by the
 * aapt tool from the resource data it found. It
 * should not be modified by hand.
 */
package org.lxh.phone;
public final class R {
  public static final class attr {
  }
  public static final class drawable {
    public static final int icon=0x7f020000;
  }
  public static final class id {
    public static final int botton=0x7f050001;
    public static final int phonenumber=0x7f050000;
  }
  public static final class layout {
    public static final int main=0x7f030000;
  }
  public static final class string {
    public static final int app_name=0x7f040003;
    public static final int bottonname=0x7f040001;
    public static final int hello=0x7f040002;
    public static final int tip=0x7f040000;
  }
}

3.編寫activity

package org.lxh.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 PhoneActivity extends Activity {
   private EditText edit;
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    edit=(EditText)this.findViewById(R.id.phonenumber);  //通過id取得文本輸入框
    Button but=(Button)this.findViewById(R.id.botton);  //通過id取得按鈕
    but.setOnClickListener(new MyListener()); //給按鈕添加監(jiān)聽器
  }
  public final class MyListener implements View.OnClickListener{  //自定義的監(jiān)聽器
    public void onClick(View v) {
      //實例化一個意圖(動作),用來撥打電話
      Intent intent=new Intent("android.intent.action.CALL",Uri.parse("tel:"+edit.getText().toString()));
      startActivity(intent); //封裝一個意圖
    }
  }
}

上面是內部類的寫法,也可以使用下面的寫法

package org.lxh.activity;
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 CallPhoneActivity extends Activity {
  private EditText edittext;
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    //取得輸入框和按鈕
    edittext=(EditText)this.findViewById(R.id.phonenum);
    Button but=(Button)this.findViewById(R.id.button);
    but.setOnClickListener(new View.OnClickListener() {
      public void onClick(View v) {
        String number=edittext.getText().toString();
        //封裝一個意圖,用來撥打電話
        Intent intent=new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+number));
        startActivity(intent);
      }
    });
  }
}

開發(fā)的時候要注意Uri.parse不能少,tel:也不能少,少了就會出錯

這里要實現(xiàn)這個功能,首先要來看一下xml

<activity android:name="OutgoingCallBroadcaster"
    android:permission="android.permission.CALL_PHONE"
    android:theme="@android:style/Theme.NoDisplay"
    android:configChanges="orientation|keyboardHidden">
  <!-- CALL action intent filters, for the various ways
    of initiating an outgoing call. -->
  <intent-filter>
    <action android:name="android.intent.action.CALL" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:scheme="tel" />
  </intent-filter>
  <intent-filter>
    <action android:name="android.intent.action.CALL" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:scheme="voicemail" />
  </intent-filter>
  <intent-filter>
    <action android:name="android.intent.action.CALL" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:mimeType="vnd.android.cursor.item/phone" />
    <data android:mimeType="vnd.android.cursor.item/phone_v2" />
    <data android:mimeType="vnd.android.cursor.item/person" />
  </intent-filter>
</activity>

這里只需要看第一個filter,這里只需使用2條,那個默認的不用我們去管,另外這個也是需要獲得打電話的許可的,所以在組件清單里要加一點東西,如下所示

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="org.lxh.phone"
   android:versionCode="1"
   android:versionName="1.0">
  <application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".PhoneActivity"
         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>

準備工作差不多做好了,來測試一下吧,這里為了測試方便,我弄了2個虛擬手機

Android編程簡單實現(xiàn)撥號器功能的方法

電話打通了

Android編程簡單實現(xiàn)撥號器功能的方法

這個比較好玩吧,至于那個應用圖標自己可以換成喜歡的,我就不改了

現(xiàn)在把那個strings.xml配置文件給大家

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="hello">Hello World, PhoneActivity!</string>
  <string name="app_name">我的手機撥號器</string>
</resources>

OK了,程序寫好了。

更多關于Android相關內容感興趣的讀者可查看本站專題:《Android基本組件用法總結》、《Android視圖View技巧總結》、《Android布局layout技巧總結》、《Android資源操作技巧匯總》、《Android文件操作技巧匯總》、《Android開發(fā)入門與進階教程》、《Android編程之activity操作技巧總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI