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

場景

點擊撥打電話按鈕,跳轉到撥打電話頁面android

 

 

點擊發送短信按鈕,跳轉到發送短信頁面編程

 

 

注:app

博客:
https://blog.csdn.net/badao_liumang_qizhi
關注公衆號
霸道的程序猿
獲取編程相關電子書、教程推送與免費下載。ide

實現

將佈局改成LinearLayout,並經過android:orientation="vertical">設置爲垂直佈局,而後添加id屬性。佈局

而後添加兩個按鈕,並設置Id屬性與顯示文本。spa

<?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.net

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

 

又由於這兩個Button的點擊事件監聽器差很少,全部抽離出一個公共的點擊事件監聽器對象。code

 

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中對按鈕設置點擊事件監聽器。xml

完整示例代碼對象

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"/>

 

 

添加位置以下

相關文章
相關標籤/搜索