【Android】Parse 開發筆記(4)—— Push Notifications(上)

來源:互聯網
上載者:User


前言

合理的使用Push服務,能極大提高使用者活躍度,本博《Parse Push快速入門手冊》僅簡單介紹和使用了一下Parse的推送服務,這裡介紹更多的使用方法和技巧。系列文章分兩篇來介紹Push服務,分別針對所有使用者(上)和渠道定製使用者(下)。

 


歡迎轉載,但請保留文章原始出處:)
部落格園:http://www.cnblogs.com

農民伯伯: http://over140.cnblogs.com 

 

本文

一、系列

1.1

1.2

1.3 

 

二、準備

2.1官網的Android Push Notifications

2.2 

 

 

三、 功能

3.1準備

AndroidManifest.xml

    
    
    
    


                    android:allowBackup        android:icon        android:label        android:theme
        

        
            
                
                
            
        
        
        
            
                
            
        
    

 

注意,這隻是程式碼片段,加入項目做相應的調整。 

a)、

b)、PushService必須要註冊,否則無法使用 

c)、ReceiverPush後面要用到,主要用於接收廣播,方便自己處理推送資料。 

 

Application

    @Override
      onCreate() {
        .onCreate();

        Parse.initialize(, "Application ID",
                "Client Key");
                PushService.setDefaultPushCallback(, WebActivity.);
        ParseInstallation.getCurrentInstallation().saveInBackground();
    }

 代碼說明:

除了配置AndroidManifest.xml,僅在Application的onCreate中加入這三行代碼即可。

a)、注意最後一行好像是最新動向加上的,否則無法接收到Push,大意是登記註冊的意思,可以在Data Browser中對象Installation中看到。

b)、setDefaultPushCallback第二個參數,表示點擊Notifacation時處理的Activity

 

3.2以通知(Notification)的形式顯示推送資訊(狀態列顯示通知)

進入Parse背景Push Notifications,點擊Send a push 

3.2.1以訊息(Message)的形式發送

通過查看發送報告,發現其實也是以JSON資料發送的,不過只包含alert節點。 

 

3.2.2以JSON形式發送 

title和alert分別對應Android Notification對象的標題和訊息,不設定title就預設顯示APP的名稱。

最後點擊Send Notification就可以了,順利的話可以看到裝置上收到Notification。

 

3.2.3處理通知資訊

當點擊狀態列的通知時,會預設跳轉到

 直接從getIntent().

 

3.2自訂以廣播的形式後台接受推送資訊(狀態列不顯示通知)

只要以JSON格式發送,並且不包含title和alert節點,即不會顯示Notification了(大家可以反編譯看一下

3.2.1首先註冊Boradcast,設定Intent-filter,這裡設定的action是com.nmbb.lol.push,代碼上面已經給出。

3.2.2json資料:

必須包含action和匹配的值,才能接受到推送廣播。接下來就可以做你想做的事情了!這裡貼一下Boradcast代碼:

  ReceiverPush  BroadcastReceiver {

    @Override
      onReceive(Context context, Intent intent) {
         (context !=  && intent != 
                && "com.nmbb.lol.push".equals(intent.getAction())) {
             {
                JSONObject json =  JSONObject(intent.getExtras().getString(
                        "com.parse.Data"));
                String title = json.optString("title");
                String message = json.optString("message");
                String action = json.optString("action");
                String url = json.optString("url");
                
                ToastUtils.showLongToast(message);
                
            }  (JSONException e) {
                Logger.e(e);
            }
        }
    }

}

 

3.3其他注意

a).發送訊息時注意右上方的

b).注意在Settings中開啟Client push

c).今天還碰到一個特別奇怪的問題,死活收不到推送,不知道是不是和APP名稱設定為中文有關係,刪了重建弄個英文的又好了。 

 

四、文章

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.