小編給大家分享一下Android如何使用Intent的Action和Data屬性實(shí)現(xiàn)點(diǎn)擊按鈕跳轉(zhuǎn)到撥打電話和發(fā)送短信界面,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
創(chuàng)新互聯(lián)是一家專業(yè)提供龍?zhí)镀髽I(yè)網(wǎng)站建設(shè),專注與網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、H5開(kāi)發(fā)、小程序制作等業(yè)務(wù)。10年已為龍?zhí)侗姸嗥髽I(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設(shè)計(jì)公司優(yōu)惠進(jìn)行中。
實(shí)現(xiàn)
將布局改為L(zhǎng)inearLayout,并通過(guò)android:orientation="vertical">
設(shè)置為垂直布局,然后添加id屬性。
然后添加兩個(gè)按鈕,并設(shè)置Id屬性與顯示文本。
然后來(lái)到Activity,首先通過(guò)ID獲取者兩個(gè)Button
Button buttonCall = (Button) findViewById(R.id.call); Button buttonSend = (Button) findViewById(R.id.send);
又因?yàn)檫@兩個(gè)Button的點(diǎn)擊事件監(jiān)聽(tīng)器差不多,所有抽離出一個(gè)公共的點(diǎn)擊事件監(jiān)聽(tīng)器對(duì)象。
View.OnClickListener listener = new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(); //將view強(qiáng)轉(zhuǎn)為Button Button button = (Button) v; //根據(jù)button的id switch(button.getId()){ //如果是撥打電話按鈕 case R.id.call: //設(shè)置Action行為屬性 intent.setAction(intent.ACTION_DIAL); //設(shè)置數(shù)據(jù) 后面123456789是默認(rèn)要撥打的電話 intent.setData(Uri.parse("tel:123456789")); startActivity(intent); break; case R.id.send: //設(shè)置行為為 發(fā)送短信 intent.setAction(intent.ACTION_SENDTO); //設(shè)置發(fā)送至 10086 intent.setData(Uri.parse("smsto:10086")); //設(shè)置短信的默認(rèn)發(fā)送內(nèi)容 intent.putExtra("sms_body","公眾號(hào):霸道的程序猿"); startActivity(intent); break; } } };
然后在OnCreate中對(duì)按鈕設(shè)置點(diǎn)擊事件監(jiān)聽(tīng)器。
完整示例代碼
package com.badao.relativelayouttest;import androidx.appcompat.app.AppCompatActivity;import android.content.Intent;import android.net.Uri;import android.os.Bundle;import android.view.View;import android.widget.Button;public class IntentActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_intent); Button buttonCall = (Button) findViewById(R.id.call); Button buttonSend = (Button) findViewById(R.id.send); buttonCall.setOnClickListener(listener); buttonSend.setOnClickListener(listener); } View.OnClickListener listener = new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(); //將view強(qiáng)轉(zhuǎn)為Button Button button = (Button) v; //根據(jù)button的id switch(button.getId()){ //如果是撥打電話按鈕 case R.id.call: //設(shè)置Action行為屬性 intent.setAction(intent.ACTION_DIAL); //設(shè)置數(shù)據(jù) 后面123456789是默認(rèn)要撥打的電話 intent.setData(Uri.parse("tel:123456789")); startActivity(intent); break; case R.id.send: //設(shè)置行為為 發(fā)送短信 intent.setAction(intent.ACTION_SENDTO); //設(shè)置發(fā)送至 10086 intent.setData(Uri.parse("smsto:10086")); //設(shè)置短信的默認(rèn)發(fā)送內(nèi)容 intent.putExtra("sms_body","公眾號(hào):霸道的程序猿"); startActivity(intent); break; } } };}
因?yàn)橛玫搅舜螂娫捄桶l(fā)動(dòng)短信,所以需要聲明這兩個(gè)權(quán)限,打開(kāi)AndroidMainfest.xml
看完了這篇文章,相信你對(duì)“Android如何使用Intent的Action和Data屬性實(shí)現(xiàn)點(diǎn)擊按鈕跳轉(zhuǎn)到撥打電話和發(fā)送短信界面”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!