Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IAddonActivity.java « addon « holoeverywhere « org « src « library « HoloEverywhere « 3rd_party « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce841809d45e1852db9870bf56bc7b2b9ea401be (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124

package org.holoeverywhere.addon;

import org.holoeverywhere.app.Activity;

import android.content.Intent;
import android.content.res.Configuration;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.ViewGroup.LayoutParams;

public abstract class IAddonActivity extends IAddonBase<Activity> {
    public boolean closeOptionsMenu() {
        return false;
    }

    public boolean dispatchKeyEvent(KeyEvent event) {
        return false;
    }

    public View findViewById(int id) {
        return null;
    }

    public boolean installDecorView(View view, LayoutParams params) {
        return false;
    }

    public boolean invalidateOptionsMenu() {
        return false;
    }

    public void onActivityResult(int requestCode, int resultCode, Intent data) {
    }

    public void onConfigurationChanged(Configuration oldConfig, Configuration newConfig) {

    }

    public void onContentChanged() {

    }

    public void onCreate(Bundle savedInstanceState) {

    }

    public boolean onCreatePanelMenu(int featureId, android.view.Menu menu) {
        return false;
    }

    public void onDestroy() {

    }

    public boolean onMenuItemSelected(int featureId, android.view.MenuItem item) {
        return false;
    }

    public boolean onMenuOpened(int featureId, android.view.Menu menu) {
        return false;
    }

    public void onNewIntent(Intent intent) {

    }

    public void onPanelClosed(int featureId, android.view.Menu menu) {

    }

    public void onPause() {

    }

    public void onPostCreate(Bundle savedInstanceState) {

    }

    public void onPostResume() {

    }

    public void onPreCreate(Bundle savedInstanceState) {

    }

    public boolean onPreparePanel(int featureId, View view, android.view.Menu menu) {
        return false;
    }

    public void onRestart() {

    }

    public void onResume() {

    }

    public void onSaveInstanceState(Bundle outState) {

    }

    public void onStart() {

    }

    public void onStop() {

    }

    public void onTitleChanged(CharSequence title, int color) {

    }

    public boolean openOptionsMenu() {
        return false;
    }

    public boolean requestWindowFeature(int featureId) {
        return false;
    }
}