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

溫馨提示×

溫馨提示×

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

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

怎么在Android中利用Intent實現一個點擊按鈕跳轉到撥打電話和發送短信界面

發布時間:2021-03-01 15:33:37 來源:億速云 閱讀:237 作者:戴恩恩 欄目:移動開發

這篇文章主要介紹了怎么在Android中利用Intent實現一個點擊按鈕跳轉到撥打電話和發送短信界面,此處通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考價值,需要的朋友可以參考下:

Android是什么

Android是一種基于Linux內核的自由及開放源代碼的操作系統,主要使用于移動設備,如智能手機和平板電腦,由美國Google公司和開放手機聯盟領導及開發。

實現

將布局改為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實現一個點擊按鈕跳轉到撥打電話和發送短信界面

到此這篇關于怎么在Android中利用Intent實現一個點擊按鈕跳轉到撥打電話和發送短信界面的文章就介紹到這了,更多相關怎么在Android中利用Intent實現一個點擊按鈕跳轉到撥打電話和發送短信界面的內容請搜索億速云以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持億速云!

向AI問一下細節

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

AI

南安市| 资阳市| 章丘市| 静海县| 喀什市| 讷河市| 湘潭县| 商河县| 乾安县| 寿阳县| 剑川县| 陆河县| 仙居县| 轮台县| 黄龙县| 萍乡市| 乃东县| 张家港市| 丰台区| 柳州市| 泰兴市| 宁南县| 衢州市| 奉节县| 买车| 霍山县| 汨罗市| 赫章县| 根河市| 徐汇区| 漳平市| 西平县| 竹山县| 丰顺县| 武穴市| 沅江市| 乐安县| 青田县| 高清| 米林县| 诸暨市|