Android(java)學習筆記178:自訂廣播

來源:互聯網
上載者:User

標籤:

廣播使用:
               電台:對外發送訊號。---------電台發送廣播(可以自訂)
               收音機:接收電台的訊號。-----廣播接收者

 

 

這裡,我們就說明自訂電台,搭建屬於自己的電台廣播:

 

1.首先我們編寫自己的電台android 程式,搭建電台,如下:

(1)首先是布局檔案,activity_main.xml檔案:

<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"    tools:context=".MainActivity" >    <Button        android:onClick="click"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerHorizontal="true"        android:layout_centerVertical="true"        android:text="發送廣播" /></RelativeLayout>

(2)上面給Button定義一個方法click,這裡我們就直接實現它,點擊按鈕發送廣播:

則MainActivity.java代碼如下:

package com.itheima.sender;import android.app.Activity;import android.content.Intent;import android.net.Uri;import android.os.Bundle;import android.view.View;public class MainActivity extends Activity {    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);    }        // 發送廣播    public void click(View view){
Intent intent = new Intent(); intent.setAction("com.itheima.sender.CCTV"); intent.setData(Uri.parse("cctv://全國上下一片紅")); sendBroadcast(intent); }}
利用Intent發送資料,這裡的Action動作為:字串"com.itheima.sender.CCTV",這是自訂的。
下面是設定資料為:intent.setData(Uri.parse("cctv://全國上下一片紅"));這裡自訂設定資料為Uri類型,資料開頭關鍵字為:cctv

這裡的不用設定任何許可權

 

2.上面搭建好電台,必須建立建立廣播接收者,這樣我們才能聽到廣播,如下我們再編寫一個監聽上面自訂廣播的廣播接收者android程式:

(1)第一步還是買了收音機,編寫MyBroadcastReceiver繼承自BroadcastReceiver:

package com.itheima.receiver;import android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;import android.widget.Toast;public class MyBroadcastReceiver extends BroadcastReceiver {    @Override    public void onReceive(Context context, Intent intent) {        Toast.makeText(context, "我是公務員,我接收到了組織的廣播"+intent.getData(), 0).show();    }}

(2)第二步和第三步是:裝電池 和 調頻道:

在AndroidManifest.xml設定檔的application節點下添加receiver節點內容:

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="com.itheima.receiver"    android:versionCode="1"    android:versionName="1.0" >    <uses-sdk        android:minSdkVersion="8"        android:targetSdkVersion="17" />    <application        android:allowBackup="true"        android:icon="@drawable/ic_launcher"        android:label="@string/app_name"        android:theme="@style/AppTheme" >        <activity            android:name="com.itheima.receiver.MainActivity"            android:label="@string/app_name" >            <intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>        </activity>

<receiver android:name="com.itheima.receiver.MyBroadcastReceiver"> <intent-filter > <action android:name="com.itheima.sender.CCTV"/> <data android:scheme="cctv"/> </intent-filter> </receiver>

</application></manifest>

 在手機上的運行效果如下:

3.上面已經搭建好了自訂的電台  和 同時也準備好了相應的廣播接收者:

我們看看啟動並執行效果,點擊如下介面的按鈕:

 

按下按鈕之後出現的效果如下:

 

這就是完整的自訂電台的邏輯過程

 

Android(java)學習筆記178:自訂廣播

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.