안 드 로 이 드 는 핸드폰 으로 전 화 를 걸 수 있 는 기능 을 실현 한다.

4452 단어 Android전화.
휴대 전화 에서 가장 자주 사용 하 는 기능 은 바로 전화 와 문 자 를 보 내 는 것 입 니 다.안 드 로 이 드 개발 에서 우 리 는 어떻게 프로그램 을 통 해 전 화 를 합 니까?본 고 는 안 드 로 이 드 핸드폰 으로 전 화 를 걸 수 있 는 간단 한 실례 를 제시한다.
       다음은 이 인 스 턴 스 를 개발 하 는 구체 적 인 절차 입 니 다.
       1.아이 폰 콜 데모 라 는 안 드 로 이 드 프로젝트 를 새로 만 듭 니 다.
       2.디자인 프로그램의 인터페이스,main.xml 를 열 어 내용 을 다음 과 같이 수정 합 니 다.
XML/HTML 코드

<?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="Please input the phoneNumer:" 
 
  /> 
 
  <EditText 
 
  android:id="@+id/et1" 
 
  android:layout_width="fill_parent" 
 
  android:layout_height="wrap_content" 
 
  android:phoneNumber="true" 
 
  /> 
 
  <Button 
 
  android:id="@+id/bt1" 
 
  android:layout_width="wrap_content" 
 
  android:layout_height="wrap_content" 
 
  android:text="Call Phone" 
 
  /> 
 
  </LinearLayout> 
  3.전 화 를 걸 수 있 는 권한 을 늘 리 고 AndroidManifest.xml 를 켜 면 다음 과 같이 코드 를 수정 합 니 다.
XML/HTML 코드

<?xml version="1.0" encoding="utf-8"?> 
 
  <manifest xmlns:android="http://schemas.android.com/apk/res/android" 
 
  package="com.android.test" 
 
  android:versionCode="1" 
 
  android:versionName="1.0"> 
 
  <application android:icon="@drawable/icon" android:label="@string/app_name"> 
 
  <activity android:name=".PhoneCallDemo" 
 
  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="3" />  
 
  <uses-permission android:name="android.permission.CALL_PHONE"> 
 
  </uses-permission> 
 
  </manifest> 
 4.메 인 프로그램 phoneCallDemo.java 코드 는 다음 과 같 습 니 다.

 package com.android.test;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; 
 
  import android.widget.Toast;
 
 public class PhoneCallDemo extends Activity { 
 
  private Button bt; 
 
  private EditText et; 
 
  public void onCreate(Bundle savedInstanceState) { 
 
  super.onCreate(savedInstanceState); 
 
  setContentView(R.layout.main); 
 
  //     
 
  bt = (Button)findViewById(R.id.bt1); 
 
  et = (EditText)findViewById(R.id.et1); 
 
  //       
 
  bt.setOnClickListener(new Button.OnClickListener(){ @Override 
 
  public void onClick(View v) { 
 
  //           
 
  String inputStr = et.getText().toString(); 
 
  //             Intent 
 
  if(inputStr.trim().length()!=0) 
 
  { 
 
  Intent phoneIntent = new Intent("android.intent.action.CALL", 
 
  Uri.parse("tel:" + inputStr)); 
 
  //   
 
  startActivity(phoneIntent); 
 
  } 
 
  //  Toast     
 
  else{ 
 
  Toast.makeText(PhoneCallDemo.this, "      ", Toast.LENGTH_LONG).show(); 
 
  } 
 
  } 
 
  }); 
 
  } 
이상 은 안 드 로 이 드 개발 이 전 화 를 거 는 간단 한 예 입 니 다.추 후 관련 자 료 를 계속 보충 하 겠 습 니 다.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기