use of me.ccrama.redditslide.Activities.ShadowboxComments in project Slide by ccrama.
the class MediaFragmentComment method onCreate.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Bundle bundle = this.getArguments();
i = bundle.getInt("page");
s = ((ShadowboxComments) getActivity()).comments.get(i);
sub = s.comment.getComment().getSubredditName();
contentUrl = bundle.getString("contentUrl");
client = Reddit.client;
gson = new Gson();
mashapeKey = SecretConstants.getImgurApiKey(getContext());
}
use of me.ccrama.redditslide.Activities.ShadowboxComments in project Slide by ccrama.
the class AlbumFullComments method onCreate.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Bundle bundle = this.getArguments();
i = bundle.getInt("page", 0);
s = ((ShadowboxComments) getActivity()).comments.get(i);
}
Aggregations