Android電話撥號器實現(xiàn)方法
本文實例講述了Android電話撥號器實現(xiàn)方法。分享給大家供大家參考。具體如下:
以下案例模擬android電話撥號器的實現(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="請輸入電話號碼" /> <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="拔打此號碼" 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)部會自動為intent對象設(shè)置類別:android.intent.category.DEFAULT
startActivity(intent);
}
});
}
}
運行結(jié)果:
界面初始化:

電話撥打效果:

希望本文所述對大家的Android程序設(shè)計有所幫助。
相關(guān)文章
點擊微信內(nèi)網(wǎng)頁a標簽直接跳轉(zhuǎn)打開淘寶APP的方法實例
這篇文章主要給大家介紹了關(guān)于如何實現(xiàn)點擊微信內(nèi)網(wǎng)頁a標簽直接跳轉(zhuǎn)打開淘寶APP的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面來一起看看吧。2017-11-11
Android 退出多Activity的application的方式方法
在開發(fā)過程中,我們常常需要一個退出功能,來退出該應(yīng)用的所有Activity,本篇文章主要介紹了Android 退出多Activity的application的方式,有興趣的可以了解一下。2017-02-02
Android實現(xiàn)EditText圖文混合插入上傳功能
這篇文章主要為大家詳細介紹了Android實現(xiàn)EditText圖文混合插入上傳功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-08-08
XRecyclerView實現(xiàn)下拉刷新、滾動到底部加載更多等功能
這篇文章主要為大家詳細介紹了XRecyclerView實現(xiàn)下拉刷新、滾動到底部加載更多等功能,以及添加header功能的RecyclerView,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-08-08
android實現(xiàn)播放網(wǎng)絡(luò)視頻
這篇文章主要為大家詳細介紹了android實現(xiàn)播放網(wǎng)絡(luò)視頻,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2021-04-04
Android編程實現(xiàn)對電池狀態(tài)的監(jiān)視功能示例
這篇文章主要介紹了Android編程實現(xiàn)對電池狀態(tài)的監(jiān)視功能,涉及Android基于廣播實現(xiàn)針對電源電量的判定與監(jiān)視技巧,需要的朋友可以參考下2016-11-11
Android UI設(shè)計系列之ImageView實現(xiàn)ProgressBar旋轉(zhuǎn)效果(1)
這篇文章主要為大家詳細介紹了Android UI設(shè)計之ImageView實現(xiàn)ProgressBar旋轉(zhuǎn)效果,具有一定的實用性和參考價值,感興趣的小伙伴們可以參考一下2016-06-06
Android使用ftp方式實現(xiàn)文件上傳和下載功能
這篇文章主要介紹了Android使用ftp方式實現(xiàn)文件上傳和下載功能,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-06-06

