blob: d43a97f31a2fae93531ed21b03f900a953a83d78 (
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
|
/* -*- 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.home;
import org.mozilla.gecko.R;
import org.mozilla.gecko.GeckoAppShell;
import org.mozilla.gecko.home.PanelLayout.DatasetBacked;
import org.mozilla.gecko.home.PanelLayout.FilterManager;
import org.json.JSONException;
import org.json.JSONObject;
import android.content.Context;
import android.database.Cursor;
import android.support.v4.widget.SwipeRefreshLayout;
import android.util.Log;
import android.view.View;
/**
* Used to wrap a {@code DatasetBacked} ListView or GridView to give the child view swipe-to-refresh
* capabilities.
*
* This view acts as a decorator to forward the {@code DatasetBacked} methods to the child view
* while providing the refresh gesture support on top of it.
*/
class PanelRefreshLayout extends SwipeRefreshLayout implements DatasetBacked {
private static final String LOGTAG = "GeckoPanelRefreshLayout";
private static final String JSON_KEY_PANEL_ID = "panelId";
private static final String JSON_KEY_VIEW_INDEX = "viewIndex";
private final String panelId;
private final int viewIndex;
private final DatasetBacked datasetBacked;
/**
* @param context Android context.
* @param childView ListView or GridView. Must implement {@code DatasetBacked}.
* @param panelId The ID from the {@code PanelConfig}.
* @param viewIndex The index from the {@code ViewConfig}.
*/
public PanelRefreshLayout(Context context, View childView, String panelId, int viewIndex) {
super(context);
if (!(childView instanceof DatasetBacked)) {
throw new IllegalArgumentException("View must implement DatasetBacked to be refreshed");
}
this.panelId = panelId;
this.viewIndex = viewIndex;
this.datasetBacked = (DatasetBacked) childView;
setOnRefreshListener(new RefreshListener());
addView(childView);
// Must be called after the child view has been added.
setColorSchemeResources(R.color.fennec_ui_orange, R.color.action_orange);
}
@Override
public void setDataset(Cursor cursor) {
datasetBacked.setDataset(cursor);
setRefreshing(false);
}
@Override
public void setFilterManager(FilterManager manager) {
datasetBacked.setFilterManager(manager);
}
private class RefreshListener implements OnRefreshListener {
@Override
public void onRefresh() {
final JSONObject response = new JSONObject();
try {
response.put(JSON_KEY_PANEL_ID, panelId);
response.put(JSON_KEY_VIEW_INDEX, viewIndex);
} catch (JSONException e) {
Log.e(LOGTAG, "Could not create refresh message", e);
return;
}
GeckoAppShell.notifyObservers("HomePanels:RefreshView", response.toString());
}
}
}
|