use of com.pushtorefresh.storio3.sample.ui.adapter.TweetsAdapter in project storio by pushtorefresh.
the class TweetsSQLiteFragment method onCreate.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final FragmentActivity activity = getActivity();
SampleApp.get(activity).appComponent().inject(this);
tweetsAdapter = new TweetsAdapter(LayoutInflater.from(activity), this);
new Relations(storIOSQLite).getTweetWithUser();
}
use of com.pushtorefresh.storio3.sample.ui.adapter.TweetsAdapter in project storio by pushtorefresh.
the class TweetsContentResolverFragment method onCreate.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final FragmentActivity activity = getActivity();
SampleApp.get(activity).appComponent().inject(this);
tweetsAdapter = new TweetsAdapter(LayoutInflater.from(activity), this);
}
Aggregations