91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何使用Intent的Action和Data屬性實現點擊按鈕跳轉到撥打電話和發送短信界面

發布時間:2021-09-27 11:50:37 來源:億速云 閱讀:172 作者:小新 欄目:編程語言

小編給大家分享一下Android如何使用Intent的Action和Data屬性實現點擊按鈕跳轉到撥打電話和發送短信界面,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

實現

將布局改為LinearLayout,并通過android:orientation="vertical">設置為垂直布局,然后添加id屬性。

然后添加兩個按鈕,并設置Id屬性與顯示文本。

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:app="http://schemas.android.com/apk/res-auto"  xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="vertical"  tools:context=".IntentActivity">  <Button    android:id="@+id/call"    android:text="撥打電話"    android:layout_width="wrap_content"    android:layout_height="wrap_content"/>  <Button    android:id="@+id/send"    android:text="發送短信"    android:layout_width="wrap_content"    android:layout_height="wrap_content"/></LinearLayout>

然后來到Activity,首先通過ID獲取者兩個Button

Button buttonCall = (Button) findViewById(R.id.call);    Button buttonSend = (Button) findViewById(R.id.send);

又因為這兩個Button的點擊事件監聽器差不多,所有抽離出一個公共的點擊事件監聽器對象。

View.OnClickListener listener = new View.OnClickListener() {    @Override    public void onClick(View v) {      Intent intent = new Intent();      //將view強轉為Button      Button button = (Button) v;      //根據button的id      switch(button.getId()){        //如果是撥打電話按鈕        case R.id.call:          //設置Action行為屬性          intent.setAction(intent.ACTION_DIAL);          //設置數據 后面123456789是默認要撥打的電話          intent.setData(Uri.parse("tel:123456789"));          startActivity(intent);          break;        case R.id.send:          //設置行為為 發送短信          intent.setAction(intent.ACTION_SENDTO);          //設置發送至 10086          intent.setData(Uri.parse("smsto:10086"));          //設置短信的默認發送內容          intent.putExtra("sms_body","公眾號:霸道的程序猿");          startActivity(intent);          break;      }    }  };

然后在OnCreate中對按鈕設置點擊事件監聽器。

完整示例代碼

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強轉為Button      Button button = (Button) v;      //根據button的id      switch(button.getId()){        //如果是撥打電話按鈕        case R.id.call:          //設置Action行為屬性          intent.setAction(intent.ACTION_DIAL);          //設置數據 后面123456789是默認要撥打的電話          intent.setData(Uri.parse("tel:123456789"));          startActivity(intent);          break;        case R.id.send:          //設置行為為 發送短信          intent.setAction(intent.ACTION_SENDTO);          //設置發送至 10086          intent.setData(Uri.parse("smsto:10086"));          //設置短信的默認發送內容          intent.putExtra("sms_body","公眾號:霸道的程序猿");          startActivity(intent);          break;      }    }  };}

因為用到了打電話和發動短信,所以需要聲明這兩個權限,打開AndroidMainfest.xml

<!--添加打電話權限-->  <uses-permission android:name="android.permission.CALL_PHONE"/>  <!--添加發送短信權限-->  <uses-permission android:name="android.permission.SEND_SMS"/>

看完了這篇文章,相信你對“Android如何使用Intent的Action和Data屬性實現點擊按鈕跳轉到撥打電話和發送短信界面”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

麻城市| 耿马| 西青区| 樟树市| 建始县| 虹口区| 和顺县| 奉节县| 瓮安县| 周宁县| 固原市| 万安县| 承德市| 广水市| 揭西县| 伊金霍洛旗| 梓潼县| 武汉市| 沅江市| 扎赉特旗| 成武县| 石泉县| 邻水| 理塘县| 黄冈市| 隆昌县| 双江| 辽阳县| 长乐市| 安新县| 云林县| 新沂市| 平湖市| 丹棱县| 延寿县| 南岸区| 黎平县| 邹平县| 本溪市| 沾益县| 赤城县|