編輯:關於Android編程
本文實例為大家分享了Android打電話功能的實現代碼,需要一個文本輸入框輸入號碼,需要一個按鈕打電話。
本質:點擊按鈕,調用系統打電話功能。
xml布局文件代碼::
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:orientation="vertical" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="請輸入號碼" /> <EditText android:id="@+id/et_phone" android:layout_width="match_parent" android:layout_height="wrap_content" /> <Button android:id="@+id/bt_call" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="撥打" /> </LinearLayout>
mainactivity中代碼:
package com.ydl.dialer; import android.net.Uri; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //給按鈕設置點擊偵聽 //1.拿到按鈕對象 Button bt = (Button) findViewById(R.id.bt_call);//Button類是View的子類,向下轉型要強轉。 //2.設置偵聽 bt.setOnClickListener(new MyListener()); } class MyListener implements OnClickListener{ //按鈕被點擊時,此方法調用 @Override public void onClick(View v) { //獲取用戶輸入的號碼 EditText et = (EditText) findViewById(R.id.et_phone); String phone = et.getText().toString(); //我們需要告訴系統,我們的動作:我要打電話 //創建意圖對象 Intent intent = new Intent(); //把打電話的動作ACTION_CALL封裝至意圖對象當中 intent.setAction(Intent.ACTION_CALL); //設置打給誰 intent.setData(Uri.parse("tel:" + phone));//這個tel:必須要加上,表示我要打電話。否則不會有打電話功能,由於在打電話清單文件裡設置了這個“協議” //把動作告訴系統,啟動系統打電話功能。 startActivity(intent); } } }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持本站。
摘要:Json數據在安卓開發過程中是非常常見的,在請求服務器端數據的時候,服務器端返回的無非就是三種類型:HTML,XML,JSON。所以學習JSON對安卓程序員來說是非
支付寶上有一個咻一咻的功能,就是點擊圖片後四周有水波紋的這種效果,今天也寫一個類似的功能。效果如下所示:思路:就是幾個圓的半徑不斷在變大,這個可以使用動畫縮放實現,還有透
在項目開發中,我們經常需要進行動態添加組件,其中可添加的部分有兩項:布局和組件 其中,添加的布局主要有RelativeLayout型(相對布局)的和Linear
圖像狀態資源只能定義有限的幾種狀態。如果需要更多的狀態,就要使用圖像級別資源。在該資源文件中可以定義任意多個圖像級別。每個圖像級別是一個整數區間,可以通過ImageVie