Android模似打電話程式實現 - Android移動開發技術文章
參考地址:http://www.verydemo.com/demo_c131_i173151.html
今天我們用Android寫了一個小程式,實現了打電話。首先,先新建一個Android專案Phone,然後修改Layout下Values中的String.xml,程式碼如下:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, PhoneActivity!</string>
<string name="app_name">Phone</string>
<string name="input_into">請輸入你要撥打的號碼</string>
<string name="dial_caption">撥打</string>
</resources>
然後在main.xml中新增幾個屬性,程式碼如下:www.2cto.com
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/input_into" />
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/phone_number"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/dial_caption"
android:id="@+id/dial_btn"/>t
layout為佈局,修改Main.xml的程式碼後將有如圖的顯示效果:
在R.Java中將自動生成如下程式碼:
public static final class drawable {
public static final int ic_launcher=0x7f020000;
}
public static final class id {
public static final int dial_btn=0x7f050001;
public static final int phone_number=0x7f050000;
}
public static final class string {
public static final int app_name=0x7f040001;
public static final int dial_caption=0x7f040003;
public static final int hello=0x7f040000;
public static final int input_into=0x7f040002;
}
在PhoneActivity.java檔案中,有如下程式碼:
package cn.class3g.activity;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
public class PhoneActivity extends Activity {
EditText numberEt;
Button dialBtn;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
findViews();
dialBtn.setOnClickListener(myListener);
}
public void findViews(){
numberEt = (EditText)this.findViewById(R.id.phone_number);
dialBtn =(Button) this.findViewById(R.id.dial_btn);
}
private OnClickListener myListener = new Button.OnClickListener(){
public void onClick(View v) {
String phone_number = numberEt.getText().toString();
phone_number = phone_number.trim();
if(phone_number != null && !phone_number.equals("")){
Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+phone_number));
PhoneActivity.this.startActivity(intent);
}
}
};
}
在AndroidManifest.xml中<application上方新增:
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.CALL_PHONE"/>
儲存,模似打電話的程式就寫完了,開啟手機虛似機,右擊專案名稱,選Run As...—>Android Application執行,便可撥打電話了。
注:該程式需啟動兩個手機虛似機,以實現互相撥號。
執行後效果如下圖:
摘自 LLLAZY520的專欄
相關文章
- [實戰] Android 撥打電話Android
- Android Tips: 打電話和發簡訊Android
- “動次打次!”——用Web技術實現移動監測Web
- Android技術分享| 視訊通話開發流程(一)Android
- Android技術分享| 視訊通話開發流程(二)Android
- Android 開發有哪些新技術出現?Android
- android 開發之 APT 技術AndroidAPT
- [android]命令列向虛擬機器發簡訊打電話Android命令列虛擬機
- 移動開發技術有哪些?移動開發
- 聊聊真實的 Android TV 開發技術棧Android
- Android打電話程式(根據新增按鈕監聽的3種不同方式分別實現)Android
- Android技術分享| 安卓3行程式碼,實現整套音視訊通話功能Android安卓行程
- Android開發技術面總結Android
- Android開發文章推薦Android
- 開源元件DoraemonKit之Android版本技術實現(二)元件Android
- 開源元件DoraemonKit之Android版本技術實現(一)元件Android
- SAP 移動開發技術綜述移動開發
- Android技術分享| 【你畫我猜】Android 快速實現Android
- Android模擬器識別技術Android
- android移動開發簡單的開發例項Android移動開發
- uniapp 實現打電話錄音功能APP
- OPPO Android開發技術面總結Android
- 【轉】Android開發Dex的分包技術Android
- 移動端前端開發技術概況前端
- Flutter #0 移動開發技術簡介Flutter移動開發
- 【Flutter實戰】移動技術發展史Flutter
- Android換膚實現技術思路總結Android
- Android 開發技術週報 Issue#288Android
- Android 開發技術週報 Issue#279Android
- 移動端撥打電話和傳送簡訊按鈕
- 安卓打電話,發簡訊安卓
- 行動電話的實現
- Android實現類似QQ對話方塊的@他人的整體解決方案Android
- 技術文章遷移說明
- 小李移動開發成長記 —— 大話小程式移動開發
- 【譯】移動應用開發:如何建立自定義Android程式碼模板Android
- 2015年Android 開發有哪些新技術出現?Android
- 技術分享| 小程式實現音視訊通話