Home | History | Annotate | Download | only in handlers
      1 /*
      2 Copyright 2016 The Android Open Source Project
      3 
      4 Licensed under the Apache License, Version 2.0 (the "License");
      5 you may not use this file except in compliance with the License.
      6 You may obtain a copy of the License at
      7 
      8 http://www.apache.org/licenses/LICENSE-2.0
      9 
     10 Unless required by applicable law or agreed to in writing, software
     11 distributed under the License is distributed on an "AS IS" BASIS,
     12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13 See the License for the specific language governing permissions and
     14 limitations under the License.
     15  */
     16 package com.example.android.wearable.wear.wearnotifications.handlers;
     17 
     18 import android.app.Activity;
     19 import android.app.NotificationManager;
     20 import android.content.Context;
     21 import android.os.Bundle;
     22 
     23 import com.example.android.wearable.wear.wearnotifications.R;
     24 import com.example.android.wearable.wear.wearnotifications.StandaloneMainActivity;
     25 
     26 /**
     27  * Template class meant to include functionality for your Messaging App. (This project's main focus
     28  * is on Notification Styles.)
     29  */
     30 public class MessagingMainActivity extends Activity {
     31 
     32     private static final String TAG = "MessagingMainActivity";
     33 
     34     @Override
     35     protected void onCreate(Bundle savedInstanceState) {
     36         super.onCreate(savedInstanceState);
     37         setContentView(R.layout.activity_messaging_main);
     38 
     39         // Cancel Notification
     40         NotificationManager notificationManager =
     41                 (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
     42 
     43         notificationManager.cancel(StandaloneMainActivity.NOTIFICATION_ID);
     44 
     45         // TODO: Handle and display message/conversation from your database
     46     }
     47 }