Twitter Android SDK不执行回叫

我正在用一个Twitter句柄运行这个代码,我相当肯定不存在为了测试错误处理。 回调中的断点不会被触及,既不会成功也不会失败。

任何指针为什么这是?

就像注意一样,这段代码对于有效的Twitter句柄工作正常,但不会调用回调函数。

final Callback<Tweet> actionCallback = new Callback<Tweet>() {
    @Override
    public void success(Result<Tweet> result) {
        int x = 1;
        x++; // This code is just so I can put a breakpoint here
    }
    @Override
    public void failure(TwitterException exception) {
        DialogManager.showOkDialog(context, R.string.twitter_feed_not_found);
    }
};

final UserTimeline userTimeline = new UserTimeline.Builder().screenName(handleStr + "dfdfddfdfdfasdf") // Handle that doesn't exist
        .includeReplies(false).includeRetweets(false).maxItemsPerRequest(5).build();

final TweetTimelineListAdapter adapter = new TweetTimelineListAdapter.Builder(context)
        .setTimeline(userTimeline)
        .setViewStyle(R.style.tw__TweetLightWithActionsStyle)
        .setOnActionCallback(actionCallback)
        .build();

listView.setAdapter(adapter);

我认为你误解了ActionCallback的目的。 从TweetTimelineListAdapter的源代码中,您可以看到此回调针对的是推文视图上的操作,例如,当您单击最喜欢的图标时。 我已经用最喜欢的图标进行了测试,并调用了回调函数。

在源代码的getView方法中查看此注释。

   /**
     * Returns a CompactTweetView by default. May be overridden to provide another view for the
     * Tweet item. If Tweet actions are enabled, be sure to call setOnActionCallback(actionCallback)
     * on each new subclass of BaseTweetView to ensure proper success and failure handling
     * for Tweet actions (favorite, unfavorite).
     */

回调并不是为了处理不存在的屏幕名称,而是处理特定推文的动作/按钮。

希望这可以帮助。

已更新:您不需要检测UserTimeLine上的任何错误,因为构建器不会引发任何异常,并且适配器将为空,并且屏幕上不显示行/视图。 但是如果你仍然需要在加载时检测到一些“错误”,你必须依赖UserTimeLine的“下一个”方法。

看一看

  userTimeline.next(null, new Callback<TimelineResult<Tweet>>() {
        @Override
        public void success(Result<TimelineResult<Tweet>> result) {

        }

        @Override
        public void failure(TwitterException exception) {
            Log.d("TAG",exception.getMessage());
        }
    });

此方法显示用户的下一条推文,如果调用失败回调函数,您将确定该用户没有任何推文或该用户不存在。

链接地址: http://www.djcxy.com/p/41203.html

上一篇: Twitter Android SDK not executing Callback

下一篇: Hiding/Showing Child Windows of a Tab Control Win32