Android之路——第一個Android小程式(Android電話撥號器)

來源:互聯網
上載者:User

廢話不說,直接貼代碼:

首先是布局的代碼:main.xml

<?xml version="1.0" encoding="utf-8"?><br /><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"<br /> android:orientation="vertical"<br /> android:layout_width="fill_parent"<br /> android:layout_height="fill_parent"<br /> ><br /><TextView<br /> android:layout_width="fill_parent"<br /> android:layout_height="wrap_content"<br /> android:text="@string/inputmobile"<br /> /><br /><EditText<br />android:layout_width = "fill_parent"<br />android:layout_height= "wrap_content"<br />android:id = "@+id/mobile" /><br /><Button android:id="@+id/button"<br />android:layout_height="wrap_content"<br />android:text="@string/button"<br />android:layout_width="wrap_content"><br /></Button><br /></LinearLayout><br /> 

接下來是String.xml的代碼:

<?xml version="1.0" encoding="utf-8"?><br /><resources><br /> <string name="inputmobile">請輸入手機號:</string><br /> <string name="app_name">電話撥號器</string><br /> <string name = "button">撥打此號碼</string><br /></resources><br /> 

上面兩個都是位於res裡面的。

 

接下來是src裡面的代碼DialogActivity:

package cn.jason.android;<br />import android.app.Activity;<br />import android.content.Intent;<br />import android.net.Uri;<br />import android.os.Bundle;<br />import android.view.View;<br />import android.widget.Button;<br />import android.widget.EditText;<br />public class DialogActivity extends Activity {<br /> /** Called when the activity is first created. */<br /> @Override<br /> /**<br /> * 這個方法是重載自啟動方法,在Application啟動的時候自動觸發<br /> */<br /> public void onCreate(Bundle savedInstanceState) {<br /> super.onCreate(savedInstanceState);<br /> setContentView(R.layout.main);<br /> //調用到button按鈕<br /> Button button = (Button) findViewById(R.id.button);<br /> //為button按鈕設定監聽器,監聽器類型是在本視圖的監聽器<br /> button.setOnClickListener(new View.OnClickListener() {</p><p>public void onClick(View view) {<br />//調用到編輯框的值<br />EditText editText = (EditText) findViewById(R.id.mobile);<br />//建立一個intent對象,進行調用系統的打電話的方法,然後傳遞號碼過去<br />Intent intent = new Intent(Intent.ACTION_CALL , Uri.parse("tel:" + editText.getText()));<br />//相應事件<br />DialogActivity.this.startActivity(intent);<br />}<br />});<br /> }<br />} 

 

這個代碼寫完還是不能用的,因為沒有授權,所以必須在androidManifest這個檔案裡面寫:<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>

下面是這個程式的:

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.