Android實(shí)現(xiàn)撥號(hào)器電話-創(chuàng)新互聯(lián)

xml中的代碼實(shí)現(xiàn)

企業(yè)建站必須是能夠以充分展現(xiàn)企業(yè)形象為主要目的,是企業(yè)文化與產(chǎn)品對(duì)外擴(kuò)展宣傳的重要窗口,一個(gè)合格的網(wǎng)站不僅僅能為公司帶來巨大的互聯(lián)網(wǎng)上的收集和信息發(fā)布平臺(tái),成都創(chuàng)新互聯(lián)公司面向各種領(lǐng)域:成都LED顯示屏網(wǎng)站設(shè)計(jì)、網(wǎng)絡(luò)營銷推廣解決方案、網(wǎng)站設(shè)計(jì)等建站排名服務(wù)。

<RelativeLayout 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"
    android:padding="20dp"
 >

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/title" />
   <EditText 
       android:id="@+id/phonenumber"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:hint="請(qǐng)輸入手機(jī)號(hào)碼"
       android:inputType="phone"
       android:layout_below="@id/title"
       
       />
	<Button 
	    android:id="@+id/but"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
	    android:onClick="call"
	    android:text="撥打"
	    android:layout_below="@id/phonenumber"
	    />
</RelativeLayout>

mainActivity中代碼的實(shí)現(xiàn)

public class MainActivity extends Activity {
	private EditText edit;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        edit=(EditText)findViewById(R.id.phonenumber);
    }

	public  void call(View v){
	System.out.println("被點(diǎn)擊了");
	String num=edit.getText().toString();
	 
	Intent intent=new Intent();//創(chuàng)建一個(gè)意圖
	intent.setAction(intent.ACTION_CALL);//指定動(dòng)作為撥打電話
	intent.setData(Uri.parse("tel:"+num));//指定要播出的電話號(hào)碼
	startActivity(intent);
	
	}
  
}

同時(shí)還需要給我們的應(yīng)用程序添加一個(gè)可以撥打號(hào)碼的權(quán)限

<!-- 添加撥打電話的權(quán)限 -->
	<uses-permission 
	    android:name="android.permission.CALL_PHONE"
	    />

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

網(wǎng)站標(biāo)題:Android實(shí)現(xiàn)撥號(hào)器電話-創(chuàng)新互聯(lián)
鏈接分享:http://muchs.cn/article18/dgiogp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司自適應(yīng)網(wǎng)站、微信小程序搜索引擎優(yōu)化、軟件開發(fā)品牌網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都做網(wǎng)站