Search in sources :

Example 1 with Track

use of org.fossasia.openevent.data.Track in project open-event-android by fossasia.

the class SessionDetailActivity method loadSession.

private void loadSession(Session session) {
    this.session = session;
    Track track = session.getTrack();
    if (track != null && !Utils.isEmpty(track.getName())) {
        this.trackName = track.getName();
        this.trackColor = Color.parseColor(track.getColor());
        this.fontColor = Color.parseColor(track.getFontColor());
        this.darkColor = Views.getDarkColor(Color.parseColor(track.getColor()));
        hasTrack = true;
    }
    updateSession();
}
Also used : Track(org.fossasia.openevent.data.Track)

Example 2 with Track

use of org.fossasia.openevent.data.Track in project open-event-android by fossasia.

the class MainActivity method handleJsonEvent.

@Subscribe
public void handleJsonEvent(final JsonReadEvent jsonReadEvent) {
    final String name = jsonReadEvent.getName();
    final String json = jsonReadEvent.getJson();
    disposable.add(Completable.fromAction(() -> {
        ObjectMapper objectMapper = APIClient.getObjectMapper();
        // Need separate instance for background thread
        Realm realm = Realm.getDefaultInstance();
        RealmDataRepository realmDataRepository = RealmDataRepository.getInstance(realm);
        switch(name) {
            case ConstantStrings.EVENT:
                {
                    Event event = objectMapper.readValue(json, Event.class);
                    saveEventDates(event);
                    realmDataRepository.saveEvent(event).subscribe();
                    realmDataRepository.saveEvent(event).subscribe();
                    StrategyRegistry.getInstance().getEventBusStrategy().postEventOnUIThread(new EventDownloadEvent(true));
                    break;
                }
            case ConstantStrings.TRACKS:
                {
                    List<Track> tracks = objectMapper.readValue(json, objectMapper.getTypeFactory().constructCollectionType(List.class, Track.class));
                    realmDataRepository.saveTracks(tracks).subscribe();
                    StrategyRegistry.getInstance().getEventBusStrategy().postEventOnUIThread(new TracksDownloadEvent(true));
                    break;
                }
            case ConstantStrings.SESSIONS:
                {
                    List<Session> sessions = objectMapper.readValue(json, objectMapper.getTypeFactory().constructCollectionType(List.class, Session.class));
                    for (Session current : sessions) {
                        current.setStartDate(current.getStartsAt().split("T")[0]);
                    }
                    realmDataRepository.saveSessions(sessions).subscribe();
                    StrategyRegistry.getInstance().getEventBusStrategy().postEventOnUIThread(new SessionDownloadEvent(true));
                    break;
                }
            case ConstantStrings.SPEAKERS:
                {
                    List<Speaker> speakers = objectMapper.readValue(json, objectMapper.getTypeFactory().constructCollectionType(List.class, Speaker.class));
                    realmRepo.saveSpeakers(speakers).subscribe();
                    StrategyRegistry.getInstance().getEventBusStrategy().postEventOnUIThread(new SpeakerDownloadEvent(true));
                    break;
                }
            case ConstantStrings.SPONSORS:
                {
                    List<Sponsor> sponsors = objectMapper.readValue(json, objectMapper.getTypeFactory().constructCollectionType(List.class, Sponsor.class));
                    realmRepo.saveSponsors(sponsors).subscribe();
                    StrategyRegistry.getInstance().getEventBusStrategy().postEventOnUIThread(new SponsorDownloadEvent(true));
                    break;
                }
            case ConstantStrings.MICROLOCATIONS:
                {
                    List<Microlocation> microlocations = objectMapper.readValue(json, objectMapper.getTypeFactory().constructCollectionType(List.class, Microlocation.class));
                    realmRepo.saveLocations(microlocations).subscribe();
                    StrategyRegistry.getInstance().getEventBusStrategy().postEventOnUIThread(new MicrolocationDownloadEvent(true));
                    break;
                }
            case ConstantStrings.SESSION_TYPES:
                {
                    List<SessionType> sessionTypes = objectMapper.readValue(json, objectMapper.getTypeFactory().constructCollectionType(List.class, SessionType.class));
                    realmRepo.saveSessionTypes(sessionTypes).subscribe();
                    StrategyRegistry.getInstance().getEventBusStrategy().postEventOnUIThread(new SessionTypesDownloadEvent(true));
                    break;
                }
            default:
        }
        realm.close();
    }).observeOn(Schedulers.computation()).subscribe(() -> Timber.d("Saved event from JSON"), throwable -> {
        throwable.printStackTrace();
        Timber.e(throwable);
        StrategyRegistry.getInstance().getEventBusStrategy().postEventOnUIThread(new RetrofitError(throwable));
    }));
}
Also used : SpeakerDownloadEvent(org.fossasia.openevent.common.events.SpeakerDownloadEvent) Bundle(android.os.Bundle) Completable(io.reactivex.Completable) ImageView(android.widget.ImageView) DataDownloadEvent(org.fossasia.openevent.common.events.DataDownloadEvent) Track(org.fossasia.openevent.data.Track) Handler(android.os.Handler) ConnectivityManager(android.net.ConnectivityManager) SmoothActionBarDrawerToggle(org.fossasia.openevent.common.ui.SmoothActionBarDrawerToggle) Realm(io.realm.Realm) TracksDownloadEvent(org.fossasia.openevent.common.events.TracksDownloadEvent) SessionType(org.fossasia.openevent.data.SessionType) Fragment(android.support.v4.app.Fragment) LocationsFragment(org.fossasia.openevent.core.location.LocationsFragment) Snackbar(android.support.design.widget.Snackbar) DialogFactory(org.fossasia.openevent.common.ui.DialogFactory) Sponsor(org.fossasia.openevent.data.Sponsor) ConstantStrings(org.fossasia.openevent.common.ConstantStrings) FacebookApi(org.fossasia.openevent.core.feed.facebook.api.FacebookApi) ButterKnife(butterknife.ButterKnife) UserProfileActivity(org.fossasia.openevent.core.auth.profile.UserProfileActivity) Dialog(android.app.Dialog) SponsorsFragment(org.fossasia.openevent.core.sponsor.SponsorsFragment) BaseActivity(org.fossasia.openevent.common.ui.base.BaseActivity) CommonTaskLoop(org.fossasia.openevent.common.utils.CommonTaskLoop) SpeakerDownloadEvent(org.fossasia.openevent.common.events.SpeakerDownloadEvent) Menu(android.view.Menu) DownloadCompleteHandler(org.fossasia.openevent.common.api.DownloadCompleteHandler) Settings(android.provider.Settings) Observable(io.reactivex.Observable) DrawerLayout(android.support.v4.widget.DrawerLayout) StrategyRegistry(org.fossasia.openevent.config.StrategyRegistry) ComponentName(android.content.ComponentName) DataDownloadManager(org.fossasia.openevent.common.api.DataDownloadManager) TextUtils(android.text.TextUtils) IOException(java.io.IOException) CounterEvent(org.fossasia.openevent.common.events.CounterEvent) Subscribe(com.squareup.otto.Subscribe) FragmentManager(android.support.v4.app.FragmentManager) AlertDialog(android.support.v7.app.AlertDialog) Toolbar(android.support.v7.widget.Toolbar) Microlocation(org.fossasia.openevent.data.Microlocation) Session(org.fossasia.openevent.data.Session) JsonReadEvent(org.fossasia.openevent.common.events.JsonReadEvent) RealmDataRepository(org.fossasia.openevent.data.repository.RealmDataRepository) EditText(android.widget.EditText) NavigationView(android.support.design.widget.NavigationView) Rect(android.graphics.Rect) SocialLink(org.fossasia.openevent.data.extras.SocialLink) AndroidSchedulers(io.reactivex.android.schedulers.AndroidSchedulers) SessionDownloadEvent(org.fossasia.openevent.common.events.SessionDownloadEvent) BindView(butterknife.BindView) TracksFragment(org.fossasia.openevent.core.track.TracksFragment) SettingsActivity(org.fossasia.openevent.core.settings.SettingsActivity) EventDownloadEvent(org.fossasia.openevent.common.events.EventDownloadEvent) CustomTabsServiceConnection(android.support.customtabs.CustomTabsServiceConnection) APIClient(org.fossasia.openevent.common.api.APIClient) View(android.view.View) Schedulers(io.reactivex.schedulers.Schedulers) CustomTabsClient(android.support.customtabs.CustomTabsClient) R(org.fossasia.openevent.R) RetrofitResponseEvent(org.fossasia.openevent.common.events.RetrofitResponseEvent) NetworkInfo(android.net.NetworkInfo) SponsorDownloadEvent(org.fossasia.openevent.common.events.SponsorDownloadEvent) Urls(org.fossasia.openevent.common.api.Urls) DiscountCodeFragment(org.fossasia.openevent.core.discount.DiscountCodeFragment) ScheduleFragment(org.fossasia.openevent.core.schedule.ScheduleFragment) SharedPreferencesUtil(org.fossasia.openevent.common.utils.SharedPreferencesUtil) Timber(timber.log.Timber) AuthUtil(org.fossasia.openevent.core.auth.AuthUtil) List(java.util.List) CompositeDisposable(io.reactivex.disposables.CompositeDisposable) NetworkUtils(org.fossasia.openevent.common.network.NetworkUtils) Nullable(android.support.annotation.Nullable) AboutFragment(org.fossasia.openevent.core.about.AboutFragment) ShowNetworkDialogEvent(org.fossasia.openevent.common.events.ShowNetworkDialogEvent) Context(android.content.Context) AppBarLayout(android.support.design.widget.AppBarLayout) CoordinatorLayout(android.support.design.widget.CoordinatorLayout) DownloadEvent(org.fossasia.openevent.common.events.DownloadEvent) Utils(org.fossasia.openevent.common.utils.Utils) RealmList(io.realm.RealmList) ZoomableImageUtil(org.fossasia.openevent.common.ui.image.ZoomableImageUtil) Intent(android.content.Intent) FAQFragment(org.fossasia.openevent.core.faqs.FAQFragment) MenuItem(android.view.MenuItem) InputMethodManager(android.view.inputmethod.InputMethodManager) GravityCompat(android.support.v4.view.GravityCompat) RetrofitError(org.fossasia.openevent.common.events.RetrofitError) Event(org.fossasia.openevent.data.Event) MotionEvent(android.view.MotionEvent) NotificationsFragment(org.fossasia.openevent.core.notifications.NotificationsFragment) Speaker(org.fossasia.openevent.data.Speaker) Build(android.os.Build) WeakReference(java.lang.ref.WeakReference) ActionBar(android.support.v7.app.ActionBar) EventLoadedEvent(org.fossasia.openevent.common.events.EventLoadedEvent) DialogInterface(android.content.DialogInterface) MicrolocationDownloadEvent(org.fossasia.openevent.common.events.MicrolocationDownloadEvent) RealmResults(io.realm.RealmResults) ObjectMapper(com.fasterxml.jackson.databind.ObjectMapper) DateConverter(org.fossasia.openevent.common.date.DateConverter) NoInternetEvent(org.fossasia.openevent.common.events.NoInternetEvent) FeedFragment(org.fossasia.openevent.core.feed.FeedFragment) SessionTypesDownloadEvent(org.fossasia.openevent.common.events.SessionTypesDownloadEvent) SpeakersListFragment(org.fossasia.openevent.core.speaker.SpeakersListFragment) InputStream(java.io.InputStream) SessionType(org.fossasia.openevent.data.SessionType) SessionTypesDownloadEvent(org.fossasia.openevent.common.events.SessionTypesDownloadEvent) EventDownloadEvent(org.fossasia.openevent.common.events.EventDownloadEvent) MicrolocationDownloadEvent(org.fossasia.openevent.common.events.MicrolocationDownloadEvent) List(java.util.List) RealmList(io.realm.RealmList) Realm(io.realm.Realm) ObjectMapper(com.fasterxml.jackson.databind.ObjectMapper) Speaker(org.fossasia.openevent.data.Speaker) SponsorDownloadEvent(org.fossasia.openevent.common.events.SponsorDownloadEvent) RetrofitError(org.fossasia.openevent.common.events.RetrofitError) RealmDataRepository(org.fossasia.openevent.data.repository.RealmDataRepository) Sponsor(org.fossasia.openevent.data.Sponsor) SessionDownloadEvent(org.fossasia.openevent.common.events.SessionDownloadEvent) DataDownloadEvent(org.fossasia.openevent.common.events.DataDownloadEvent) TracksDownloadEvent(org.fossasia.openevent.common.events.TracksDownloadEvent) SpeakerDownloadEvent(org.fossasia.openevent.common.events.SpeakerDownloadEvent) CounterEvent(org.fossasia.openevent.common.events.CounterEvent) JsonReadEvent(org.fossasia.openevent.common.events.JsonReadEvent) SessionDownloadEvent(org.fossasia.openevent.common.events.SessionDownloadEvent) EventDownloadEvent(org.fossasia.openevent.common.events.EventDownloadEvent) RetrofitResponseEvent(org.fossasia.openevent.common.events.RetrofitResponseEvent) SponsorDownloadEvent(org.fossasia.openevent.common.events.SponsorDownloadEvent) ShowNetworkDialogEvent(org.fossasia.openevent.common.events.ShowNetworkDialogEvent) DownloadEvent(org.fossasia.openevent.common.events.DownloadEvent) Event(org.fossasia.openevent.data.Event) MotionEvent(android.view.MotionEvent) EventLoadedEvent(org.fossasia.openevent.common.events.EventLoadedEvent) MicrolocationDownloadEvent(org.fossasia.openevent.common.events.MicrolocationDownloadEvent) NoInternetEvent(org.fossasia.openevent.common.events.NoInternetEvent) SessionTypesDownloadEvent(org.fossasia.openevent.common.events.SessionTypesDownloadEvent) TracksDownloadEvent(org.fossasia.openevent.common.events.TracksDownloadEvent) Track(org.fossasia.openevent.data.Track) Microlocation(org.fossasia.openevent.data.Microlocation) Session(org.fossasia.openevent.data.Session) Subscribe(com.squareup.otto.Subscribe)

Example 3 with Track

use of org.fossasia.openevent.data.Track in project open-event-android by fossasia.

the class DayScheduleViewHolder method bindSession.

public void bindSession(RealmDataRepository realmRepo) {
    String startTimeText = DateConverter.formatDateWithDefault(DateConverter.FORMAT_24H, session.getStartsAt());
    String endTimeText = DateConverter.formatDateWithDefault(DateConverter.FORMAT_24H, session.getEndsAt());
    String title = Utils.checkStringEmpty(session.getTitle());
    startTime.setText(startTimeText);
    endTime.setText(endTimeText);
    slotTitle.setText(title);
    Track sessionTrack = session.getTrack();
    if (!RealmDataRepository.isNull(sessionTrack)) {
        int storedColor = Color.parseColor(sessionTrack.getColor());
        slotTrack.setVisibility(View.VISIBLE);
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            slotTrack.setBackground(context.getDrawable(R.drawable.button_ripple));
        }
        slotTrack.getBackground().setColorFilter(storedColor, PorterDuff.Mode.SRC_ATOP);
        slotTrack.setText(sessionTrack.getName());
        if (session.getIsBookmarked()) {
            slotBookmark.setImageResource(R.drawable.ic_bookmark_white_24dp);
        } else {
            slotBookmark.setImageResource(R.drawable.ic_bookmark_border_white_24dp);
        }
        slotBookmark.setColorFilter(storedColor, PorterDuff.Mode.SRC_ATOP);
        final int sessionId = session.getId();
        slotBookmark.setOnClickListener(v -> {
            if (session.getIsBookmarked()) {
                realmRepo.setBookmark(sessionId, false).subscribe();
                slotBookmark.setImageResource(R.drawable.ic_bookmark_border_white_24dp);
                if (onBookmarkSelectedListener != null)
                    onBookmarkSelectedListener.showSnackbar(new BookmarkStatus(storedColor, sessionId, CODE_UNDO_REMOVED));
            } else {
                // TODO: Move all logic to ViewModel
                NotificationUtil.createNotification(session, context).subscribe(() -> {
                    if (onBookmarkSelectedListener != null)
                        onBookmarkSelectedListener.showSnackbar(new BookmarkStatus(storedColor, sessionId, CODE_UNDO_ADDED));
                }, throwable -> {
                    if (onBookmarkSelectedListener != null)
                        onBookmarkSelectedListener.showSnackbar(new BookmarkStatus(-1, -1, CODE_ERROR));
                });
                realmRepo.setBookmark(sessionId, true).subscribe();
                slotBookmark.setImageResource(R.drawable.ic_bookmark_white_24dp);
                slotBookmark.setColorFilter(storedColor, PorterDuff.Mode.SRC_ATOP);
            }
            WidgetUpdater.updateWidget(context);
        });
        slotTrack.setOnClickListener(v -> {
            Intent intent = new Intent(context, TrackSessionsActivity.class);
            intent.putExtra(ConstantStrings.TRACK, sessionTrack.getName());
            intent.putExtra(ConstantStrings.TRACK_ID, sessionTrack.getId());
            context.startActivity(intent);
        });
        itemView.setOnClickListener(v -> {
            final String sessionName = session.getTitle();
            realmRepo.getTrack(session.getTrack().getId()).addChangeListener((RealmChangeListener<Track>) track -> {
                String trackName = track.getName();
                Intent intent = new Intent(context, SessionDetailActivity.class);
                intent.putExtra(ConstantStrings.SESSION, sessionName);
                intent.putExtra(ConstantStrings.TRACK, trackName);
                intent.putExtra(ConstantStrings.ID, session.getId());
                context.startActivity(intent);
            });
        });
    } else {
        slotTrack.setOnClickListener(null);
        slotTrack.setVisibility(View.GONE);
        itemView.setOnClickListener(v -> {
            final String sessionName = session.getTitle();
            Intent intent = new Intent(context, SessionDetailActivity.class);
            intent.putExtra(ConstantStrings.SESSION, sessionName);
            intent.putExtra(ConstantStrings.ID, session.getId());
            context.startActivity(intent);
        });
        Timber.d("This session has no track somehow : " + session + " " + sessionTrack);
    }
    if (session.getMicrolocation() != null) {
        String locationName = Utils.checkStringEmpty(session.getMicrolocation().getName());
        slotLocation.setText(locationName);
    }
}
Also used : RealmChangeListener(io.realm.RealmChangeListener) Context(android.content.Context) ImageButton(android.widget.ImageButton) LinearLayout(android.widget.LinearLayout) ConstantStrings(org.fossasia.openevent.common.ConstantStrings) ButterKnife(butterknife.ButterKnife) Utils(org.fossasia.openevent.common.utils.Utils) Intent(android.content.Intent) BindView(butterknife.BindView) Track(org.fossasia.openevent.data.Track) CODE_ERROR(org.fossasia.openevent.core.bookmark.BookmarkStatus.Status.CODE_ERROR) View(android.view.View) Button(android.widget.Button) Build(android.os.Build) R(org.fossasia.openevent.R) SessionDetailActivity(org.fossasia.openevent.core.track.session.SessionDetailActivity) BookmarkStatus(org.fossasia.openevent.core.bookmark.BookmarkStatus) WidgetUpdater(org.fossasia.openevent.common.ui.WidgetUpdater) DateConverter(org.fossasia.openevent.common.date.DateConverter) NotificationUtil(org.fossasia.openevent.common.notification.NotificationUtil) TrackSessionsActivity(org.fossasia.openevent.core.track.session.TrackSessionsActivity) PorterDuff(android.graphics.PorterDuff) Timber(timber.log.Timber) Color(android.graphics.Color) CODE_UNDO_REMOVED(org.fossasia.openevent.core.bookmark.BookmarkStatus.Status.CODE_UNDO_REMOVED) RecyclerView(android.support.v7.widget.RecyclerView) TextView(android.widget.TextView) OnBookmarkSelectedListener(org.fossasia.openevent.core.bookmark.OnBookmarkSelectedListener) Session(org.fossasia.openevent.data.Session) RealmDataRepository(org.fossasia.openevent.data.repository.RealmDataRepository) CODE_UNDO_ADDED(org.fossasia.openevent.core.bookmark.BookmarkStatus.Status.CODE_UNDO_ADDED) BookmarkStatus(org.fossasia.openevent.core.bookmark.BookmarkStatus) Intent(android.content.Intent) SessionDetailActivity(org.fossasia.openevent.core.track.session.SessionDetailActivity) Track(org.fossasia.openevent.data.Track)

Example 4 with Track

use of org.fossasia.openevent.data.Track in project open-event-android by fossasia.

the class SessionViewHolder method bindSession.

public void bindSession(int type, int colorInTracks, RealmDataRepository realmRepo) {
    String sessionTitleString = Utils.checkStringEmpty(session.getTitle());
    String sessionSubTitle = Utils.checkStringEmpty(session.getSubtitle());
    int color = ContextCompat.getColor(context, R.color.color_primary);
    sessionTitle.setText(sessionTitleString);
    if (Utils.isEmpty(sessionSubTitle)) {
        sessionSubtitle.setVisibility(View.GONE);
    } else {
        sessionSubtitle.setVisibility(View.VISIBLE);
        sessionSubtitle.setText(sessionSubTitle);
    }
    SessionType sessionType = session.getSessionType();
    if (sessionType != null) {
        subtitle.setVisibility(View.VISIBLE);
        subtitle.setText(sessionType.getName());
    }
    sessionStatus.setVisibility(View.GONE);
    setSessionStatus();
    Track track = session.getTrack();
    if (!RealmDataRepository.isNull(track)) {
        int storedColor = Color.parseColor(track.getColor());
        if (type != trackWiseSessionList) {
            color = storedColor;
        } else {
            color = colorInTracks;
        }
        TextDrawable drawable = Views.getTextDrawableBuilder().round().build(String.valueOf(track.getName().charAt(0)), storedColor);
        trackImageIcon.setImageDrawable(drawable);
        trackImageIcon.setBackgroundColor(Color.TRANSPARENT);
        sessionTrack.setText(track.getName());
    } else {
        trackImageIcon.setVisibility(View.GONE);
        sessionTrack.setVisibility(View.GONE);
        Timber.d("This session has a null or incomplete track somehow : " + session.getTitle() + " " + track);
    }
    itemView.setOnClickListener(v -> onItemClickListener.itemOnClick(session, getLayoutPosition()));
    String date = DateConverter.formatDateWithDefault(DateConverter.FORMAT_DATE_COMPLETE, session.getStartsAt());
    sessionDate.setText(date);
    sessionTime.setText(String.format("%s - %s", DateConverter.formatDateWithDefault(DateConverter.FORMAT_12H, session.getStartsAt()), DateConverter.formatDateWithDefault(DateConverter.FORMAT_12H, session.getEndsAt())));
    if (session.getMicrolocation() != null) {
        String locationName = Utils.checkStringEmpty(session.getMicrolocation().getName());
        sessionLocation.setText(locationName);
    } else {
        sessionLocation.setText(context.getString(R.string.location_not_decided));
    }
    setSpeakerView();
    handleVisibilityByType(type);
    setBookmarkClickListener(realmRepo, track);
    // Set color generated by palette on views
    sessionHeader.setBackgroundColor(color);
    if (track != null && track.isValid()) {
        sessionTitle.setTextColor(Color.parseColor(track.getFontColor()));
        setBookmarkIcon(sessionBookmarkIcon, session.getIsBookmarked(), track.getFontColor());
    }
}
Also used : TextDrawable(com.amulyakhare.textdrawable.TextDrawable) SessionType(org.fossasia.openevent.data.SessionType) Track(org.fossasia.openevent.data.Track)

Example 5 with Track

use of org.fossasia.openevent.data.Track in project open-event-android by fossasia.

the class Views method openSessionDetails.

public static Intent openSessionDetails(Session session, Intent intent) {
    Track track = session.getTrack();
    if (!RealmDataRepository.isNull(track)) {
        final String sessionName = session.getTitle();
        String trackName = track.getName();
        intent.putExtra(ConstantStrings.SESSION, sessionName);
        intent.putExtra(ConstantStrings.TRACK, trackName);
        intent.putExtra(ConstantStrings.ID, session.getId());
        intent.putExtra(ConstantStrings.TRACK_ID, track.getId());
    } else {
        final String sessionName = session.getTitle();
        intent.putExtra(ConstantStrings.SESSION, sessionName);
        intent.putExtra(ConstantStrings.ID, session.getId());
    }
    return intent;
}
Also used : Track(org.fossasia.openevent.data.Track)

Aggregations

Track (org.fossasia.openevent.data.Track)6 Session (org.fossasia.openevent.data.Session)3 Context (android.content.Context)2 Intent (android.content.Intent)2 Build (android.os.Build)2 View (android.view.View)2 BindView (butterknife.BindView)2 ButterKnife (butterknife.ButterKnife)2 R (org.fossasia.openevent.R)2 ConstantStrings (org.fossasia.openevent.common.ConstantStrings)2 DateConverter (org.fossasia.openevent.common.date.DateConverter)2 Utils (org.fossasia.openevent.common.utils.Utils)2 RealmDataRepository (org.fossasia.openevent.data.repository.RealmDataRepository)2 Timber (timber.log.Timber)2 Dialog (android.app.Dialog)1 ComponentName (android.content.ComponentName)1 DialogInterface (android.content.DialogInterface)1 Color (android.graphics.Color)1 PorterDuff (android.graphics.PorterDuff)1 Rect (android.graphics.Rect)1