use of com.tinyspeck.android.GlitchRequest in project glitch-hq-android by tinyspeck.
the class ActivityListViewAdapter method sendRequest.
private void sendRequest(String requestID, String command) {
Map<String, String> params = new HashMap<String, String>();
params.put("id", requestID);
GlitchRequest request = m_application.glitch.getRequest(command, params);
request.execute(m_bf);
((HomeScreen) m_act).showSpinner(true);
}
Aggregations