summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoViewFragment.java
blob: 51320636e5e7f94c03ecad1edf6bd3cba3bae7bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko;

import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.os.Parcelable;
import android.util.Log;
import android.util.SparseArray;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class GeckoViewFragment extends android.support.v4.app.Fragment {
    private static final String LOGTAG = "GeckoViewFragment";

    private static Parcelable state = null;
    private static GeckoViewFragment lastUsed = null;
    private GeckoView geckoView = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        setRetainInstance(true);
        super.onCreate(savedInstanceState);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        geckoView = new GeckoView(getContext());
        return geckoView;
    }

    @Override
    public void onResume() {
        if (state != null && lastUsed != this) {
            // "Restore" the window from the previously used GeckoView to this GeckoView and attach it
            geckoView.onRestoreInstanceState(state);
            state = null;
        }
        super.onResume();
    }

    @Override
    public void onPause() {
        state = geckoView.onSaveInstanceState();
        lastUsed = this;
        super.onPause();
    }
}