Android Day01-電話撥號器案例&Android開發流程

來源:互聯網
上載者:User

標籤:android課程

電話撥號器開發步驟:

    1.在資訊清單檔中添加打電話的許可權

<?xml version="1.0"encoding="utf-8"?>      <manifestxmlns:android="http://schemas.android.com/apk/res/android"            package="cn.itcast.action"            android:versionCode="1"            android:versionName="1.0">          略....      <uses-sdkandroid:minSdkVersion=“6" />      <uses-permission android:name="android.permission.CALL_PHONE"/>    //撥打許可權 </manifest> 注意CALL許可權,只會跳到撥打介面,要手動點擊撥打按鈕。CALL_PHONE會直接打通電話。

     2.打電話核心代碼

 //建立一個意圖對象      Intent intent_call = new Intent(); //為意圖對象添加動作     intent_call.setAction(Intent.ACTION_CALL); //為意圖對象添加資料     intent_call.setData(Uri.parse("tel:" + 電話號碼); //執行意圖     startActivity(intent_call);

  


Android開發流程:

  1. 產品經理    設計產品需求及產品原型圖        

  2. 設計師根據原型圖設計UI

  3. 架構師要寫產品架構,介面文檔

  4. 程式員,根據UI做相應的展示布局及代碼邏輯開發

  5. 測試人員測試

  6. 運營人員上線到各個市場

  7. 商務人員做商務推廣

本文出自 “行意天下” 部落格,請務必保留此出處http://4259297.blog.51cto.com/4249297/1675137

Android Day01-電話撥號器案例&Android開發流程

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.