Search in sources :

Example 21 with Response

use of com.abewy.android.apps.klyph.core.request.Response in project Klyph by jonathangerbaud.

the class KlyphListActivity method refresh.

protected void refresh() {
    startLoading();
    Log.i(TAG, "request = " + requestType + ", id = " + elementId + ", offset = " + offset);
    AsyncRequest request = new AsyncRequest(requestType, elementId, offset, new AsyncRequest.Callback() {

        public void onComplete(Response response) {
            Log.i(TAG, "onCompleted");
            onRequestComplete(response);
        }
    });
    request.execute();
}
Also used : Response(com.abewy.android.apps.klyph.core.request.Response) AsyncRequest(com.abewy.android.apps.klyph.request.AsyncRequest)

Example 22 with Response

use of com.abewy.android.apps.klyph.core.request.Response in project Klyph by jonathangerbaud.

the class AlbumPhotos method downloadAlbum.

private void downloadAlbum() {
    if (hasNoMoreData() == false) {
        Toast.makeText(getActivity(), R.string.fetch_photos_from_album, Toast.LENGTH_SHORT).show();
        new AsyncRequest(Query.ALBUM_PHOTOS_ALL, getElementId(), "", new AsyncRequest.Callback() {

            @Override
            public void onComplete(Response response) {
                if (response.getError() == null) {
                    downloadAlbum(response.getGraphObjectList());
                }
            }
        }).execute();
    } else {
        List<GraphObject> photos = new ArrayList<GraphObject>();
        for (GraphObject graphObject : getAdapter().getItems()) {
            photos.add(graphObject);
        }
        downloadAlbum(photos);
    }
}
Also used : Response(com.abewy.android.apps.klyph.core.request.Response) AsyncRequest(com.abewy.android.apps.klyph.request.AsyncRequest) ArrayList(java.util.ArrayList) GraphObject(com.abewy.android.apps.klyph.core.graph.GraphObject)

Example 23 with Response

use of com.abewy.android.apps.klyph.core.request.Response in project Klyph by jonathangerbaud.

the class AlbumVideos method downloadAlbum.

private void downloadAlbum() {
    if (hasNoMoreData() == false) {
        Toast.makeText(getActivity(), R.string.fetch_videos_from_album, Toast.LENGTH_SHORT).show();
        new AsyncRequest(Query.ALBUM_VIDEOS_ALL, getElementId(), "", new AsyncRequest.Callback() {

            @Override
            public void onComplete(Response response) {
                if (response.getError() == null) {
                    downloadAlbum(response.getGraphObjectList());
                }
            }
        }).execute();
    } else {
        List<GraphObject> videos = new ArrayList<GraphObject>();
        for (GraphObject graphObject : getAdapter().getItems()) {
            videos.add(graphObject);
        }
        downloadAlbum(videos);
    }
}
Also used : Response(com.abewy.android.apps.klyph.core.request.Response) AsyncRequest(com.abewy.android.apps.klyph.request.AsyncRequest) ArrayList(java.util.ArrayList) GraphObject(com.abewy.android.apps.klyph.core.graph.GraphObject)

Example 24 with Response

use of com.abewy.android.apps.klyph.core.request.Response in project Klyph by jonathangerbaud.

the class KlyphFragment2 method loadNewest.

protected void loadNewest() {
    newestLoading = true;
    if (getAdapter().getFirstItem() instanceof TextButtonItem) {
        getAdapter().removeFirst();
        getAdapter().notifyDataSetChanged();
    }
    String offset = null;
    /*
		 * if (KlyphPreferences.getNewsfeedGoToTop() == false && getAdapter().getCount() > 0 && getAdapter().getCount() > insertNewestToIndex)
		 * {
		 * GraphObject first = (GraphObject) getAdapter().getItem(insertNewestToIndex);
		 * offset = getNewestOffset(first);
		 * }
		 */
    AsyncRequest request = new AsyncRequest(requestNewestType, getElementId(), offset, new AsyncRequest.Callback() {

        public void onComplete(Response response) {
            Log.i("StreamListFragment", "onCompleted");
            onRequestNewestComplete(response);
        }
    });
    request.execute();
}
Also used : Response(com.abewy.android.apps.klyph.core.request.Response) AsyncRequest(com.abewy.android.apps.klyph.request.AsyncRequest) TextButtonItem(com.abewy.klyph.items.TextButtonItem)

Example 25 with Response

use of com.abewy.android.apps.klyph.core.request.Response in project Klyph by jonathangerbaud.

the class Notifications method setNotificationRead.

private void setNotificationRead(Notification notification) {
    notification.setIs_unread(false);
    new AsyncRequest(Query.POST_READ_NOTIFICATION, notification.getNotification_id(), "", new AsyncRequest.Callback() {

        @Override
        public void onComplete(Response response) {
            Log.d("NotificationsNotifications", "result " + response.getError());
        }
    }).execute();
}
Also used : Response(com.abewy.android.apps.klyph.core.request.Response) AsyncRequest(com.abewy.android.apps.klyph.request.AsyncRequest) OnDismissCallback(com.haarman.listviewanimations.itemmanipulation.OnDismissCallback) IFbPermissionCallback(com.abewy.android.apps.klyph.facebook.IFbPermissionCallback)

Aggregations

Response (com.abewy.android.apps.klyph.core.request.Response)34 AsyncRequest (com.abewy.android.apps.klyph.request.AsyncRequest)34 IFbPermissionCallback (com.abewy.android.apps.klyph.facebook.IFbPermissionCallback)17 AlertDialog (android.app.AlertDialog)9 ArrayList (java.util.ArrayList)5 Bundle (android.os.Bundle)4 Callback (com.abewy.android.apps.klyph.core.request.BaseAsyncRequest.Callback)4 Context (android.content.Context)3 GraphObject (com.abewy.android.apps.klyph.core.graph.GraphObject)3 TagCallback (com.abewy.android.apps.klyph.util.TextViewUtil.TagCallback)3 Intent (android.content.Intent)2 View (android.view.View)2 ImageButton (android.widget.ImageButton)2 TextView (android.widget.TextView)2 Photo (com.abewy.android.apps.klyph.core.fql.Photo)2 TextButtonItem (com.abewy.klyph.items.TextButtonItem)2 Uri (android.net.Uri)1 FragmentActivity (android.support.v4.app.FragmentActivity)1 ViewGroup (android.view.ViewGroup)1 InputMethodManager (android.view.inputmethod.InputMethodManager)1