com.oonhee.messages.Messages.java Source code

Java tutorial

Introduction

Here is the source code for com.oonhee.messages.Messages.java

Source

/*
   Licensed to the Apache Software Foundation (ASF) under one
   or more contributor license agreements.  See the NOTICE file
   distributed with this work for additional information
   regarding copyright ownership.  The ASF licenses this file
   to you under the Apache License, Version 2.0 (the
   "License"); you may not use this file except in compliance
   with the License.  You may obtain a copy of the License at
    
     http://www.apache.org/licenses/LICENSE-2.0
    
   Unless required by applicable law or agreed to in writing,
   software distributed under the License is distributed on an
   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
   KIND, either express or implied.  See the License for the
   specific language governing permissions and limitations
   under the License.
 */

package com.oonhee.messages;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.webkit.CookieManager;
import android.webkit.CookieSyncManager;

import org.apache.cordova.*;

public class Messages extends CordovaActivity {
    public static boolean isVisible = false;

    private static Activity activity;
    private static Context context;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        super.init();

        Messages.context = this.getApplicationContext();
        Messages.activity = this.getActivity();
        Messages.isVisible = true;

        // Set by <content src="index.html" /> in config.xml
        super.loadUrl(Config.getStartUrl());
        //super.loadUrl("file:///android_asset/www/index.html")

        // Create a cookie sync manager instance that is used to synchronize the browser cookie store between 
        // RAM and permanent storage
        CookieSyncManager.createInstance(this);

        // Set true so that WebView instances should send and accept cookies
        CookieManager.getInstance().setAcceptCookie(true);
    }

    @Override
    public void onResume() {
        super.onResume();

        Messages.isVisible = true;

        // Start cookie sync
        CookieSyncManager.getInstance().startSync();

    }

    @Override
    public void onPause() {
        super.onPause();

        Messages.isVisible = false;

        // Force to sync now and stop 
        CookieSyncManager.getInstance().sync();
        CookieSyncManager.getInstance().stopSync();
    }

    public static Activity getAppActivity() {
        return Messages.activity;
    }

    public static Context getAppContext() {
        return Messages.context;
    }
}