use of rx.subscriptions.CompositeSubscription in project u2020 by JakeWharton.
the class LogsDialog method onStart.
@Override
protected void onStart() {
super.onStart();
adapter.setLogs(lumberYard.bufferedLogs());
subscriptions = new CompositeSubscription();
subscriptions.add(//
lumberYard.logs().observeOn(//
AndroidSchedulers.mainThread()).subscribe(adapter));
}
use of rx.subscriptions.CompositeSubscription in project u2020 by JakeWharton.
the class DebugViewContainer method forActivity.
@Override
public ViewGroup forActivity(final Activity activity) {
activity.setContentView(R.layout.debug_activity_frame);
final ViewHolder viewHolder = new ViewHolder();
ButterKnife.bind(viewHolder, activity);
final Context drawerContext = new ContextThemeWrapper(activity, R.style.Theme_U2020_Debug);
final DebugView debugView = new DebugView(drawerContext);
viewHolder.debugDrawer.addView(debugView);
// Set up the contextual actions to watch views coming in and out of the content area.
ContextualDebugActions contextualActions = debugView.getContextualDebugActions();
contextualActions.setActionClickListener(v -> viewHolder.drawerLayout.closeDrawers());
viewHolder.content.setOnHierarchyChangeListener(HierarchyTreeChangeListener.wrap(contextualActions));
viewHolder.drawerLayout.setDrawerShadow(R.drawable.debug_drawer_shadow, GravityCompat.END);
viewHolder.drawerLayout.setDrawerListener(new DebugDrawerLayout.SimpleDrawerListener() {
@Override
public void onDrawerOpened(View drawerView) {
debugView.onDrawerOpened();
}
});
// Clean up any old screenshots.
TelescopeLayout.cleanUp(activity);
viewHolder.telescopeLayout.setLens(new BugReportLens(activity, lumberYard));
// If you have not seen the debug drawer before, show it with a message
if (!seenDebugDrawer.get()) {
viewHolder.drawerLayout.postDelayed(() -> {
viewHolder.drawerLayout.openDrawer(GravityCompat.END);
Toast.makeText(drawerContext, R.string.debug_drawer_welcome, Toast.LENGTH_LONG).show();
}, 1000);
seenDebugDrawer.set(true);
}
final CompositeSubscription subscriptions = new CompositeSubscription();
setupMadge(viewHolder, subscriptions);
setupScalpel(viewHolder, subscriptions);
final Application app = activity.getApplication();
app.registerActivityLifecycleCallbacks(new EmptyActivityLifecycleCallbacks() {
@Override
public void onActivityDestroyed(Activity lifecycleActivity) {
if (lifecycleActivity == activity) {
subscriptions.unsubscribe();
app.unregisterActivityLifecycleCallbacks(this);
}
}
});
riseAndShine(activity);
return viewHolder.content;
}
use of rx.subscriptions.CompositeSubscription in project Shuttle by timusus.
the class DetailFragment method onResume.
@Override
public void onResume() {
super.onResume();
IntentFilter filter = new IntentFilter();
filter.addAction("restartLoader");
getActivity().registerReceiver(receiver, filter);
subscriptions = new CompositeSubscription();
refreshAdapterItems();
}
use of rx.subscriptions.CompositeSubscription in project Shuttle by timusus.
the class SearchActivity method onCreateOptionsMenu.
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_search_activity, menu);
MenuItem searchItem = menu.findItem(R.id.action_search);
searchView = (SearchView) MenuItemCompat.getActionView(searchItem);
final SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);
final SearchableInfo searchableInfo = searchManager.getSearchableInfo(getComponentName());
if (searchView != null) {
ThemeUtils.themeSearchView(this, searchView);
searchView.setIconified(false);
searchView.setSearchableInfo(searchableInfo);
if (!TextUtils.isEmpty(filterString)) {
searchView.setQuery(filterString, false);
}
}
if (subscriptions == null || subscriptions.isUnsubscribed()) {
subscriptions = new CompositeSubscription();
}
if (searchView != null) {
subscriptions.add(getSearchViewSubscription());
}
return super.onCreateOptionsMenu(menu);
}
use of rx.subscriptions.CompositeSubscription in project ListenerMusicPlayer by hefuyicoder.
the class AlbumsPresenter method attachView.
@Override
public void attachView(AlbumsContract.View view) {
mView = view;
mCompositeSubscription = new CompositeSubscription();
}
Aggregations