Site icon Converge

Improving Fenix for multi-account users

fenix for twitter icon

I recently switched my primary twitter app from Plume to Fenix. On UI and features, both have their pros & cons, but Plume’s usability had taken a massive dive recently with long delays and freezes. Fenix, on the other hand is as fast as they get. Probably, even faster than Twitter’s own app!

While Fenix is faster, prettier, and generally more pleasant to use than Plume, it also has a few serious drawbacks – especially for users like me, with multiple Twitter accounts.

After 3 weeks of using it, I’ve even come to like some of its drawbacks (no multi-account integrated timeline – allows focus), and been desperately hunting/craving/begging for others to be removed.

This post is a list of those nettlesome issues, and my suggestions on how to remove them.

1. Easy switching between accounts

Currently, switching between timelines on two accounts requires: an edge swipe and a slightly problematic tap1. While this is an improvement from the earlier edge swipe + 2 taps, it’s still not fast or efficient enough.

Suggested solution: Swipe on action bar to switch between accounts.

Swipe on action bar to switch between different Twitter profiles.

Swiping on the list of tweets currently switches between various columns – timeline, mentions, DMs, favourites, etc. Swiping on the action bar would switch between accounts in a similar manner. In fact, this UI pattern is already used by Chrome for Android – we can switch between adjacent browser tabs by swiping on location bar / action bar2.

Swipe on the list to switch between columns of current profile.

2. Add ability to post same tweet from multiple accounts

The compose tweet function in Fenix is better than the timeline feature – user can start composing from either account and switch, with 2 simple taps, to another account. It also has the best integration of ‘drafts’ functionality that I’ve seen across any twitter app so far3.

However, it lacks a very important feature for multi-account users – ability to post the same tweet from multiple accounts in one go. Plume accomplishes this quite well (3rd screen in the image below), and it would be really great to see a similar functionality come to Fenix.

Multi-account posting

3. Better muting / filtering functionality

The changes requested so far are (mostly) UI tweaks that enhance experience for multi-users. The muting/filtering feature upgrade requests below, however, are highly relevant for all users. Also, of all the functionality in Fenix, this is one area where I feel it really needs to improve by quite a bit.

1) Apply new filters to both new tweets and the tweets already downloaded

The current implementation of muting in Fenix works by applying the set filters on new, incoming tweets. While this works for long-standing filters, it’s not very useful when you wake up in the morning to see your timeline full of tweets with a random, useless hashtag, say #ReplaceAMovieTitleWithGoat.

Now, even if add a new muting rule to filter out that #tag, it only prevents new tweets from being added to my timeline. I still need to hurdle past the 100s of unwanted tweets with that #tag already in.

Suggested solution: Every time the filter/mute list is updated, run the filter function on all the tweets in the current timeline. Just as it would be run on incoming tweets.

My hunch here is that the filter function is being run when the tweets arrive from Twitter’s backend to the app, and only the unfiltered ones are sent for storing locally to the content provider4. For filtering (and unfiltering) of already downloaded tweets to work, the code needs to be changed so that it stores all tweets, and filters them when the content resolver/adapter4 fetches them from content provider to populate the list.

2) Filter out tweets sent using specific apps

Twitter’s API provides, for every tweet, the source app used to post that tweet. Fenix uses this information in the detailed tweet display mode:

Tweet source app name

While this may be marginally useful from information perspective, it’s far more useful if the app could also provide a filter to mute tweets published using certain apps. Plume did an excellent job on this front, and prevented cluttering of timeline with automated tweets published using some very unsocial apps:

Mute/Filter tweets based on source app

3) Create filters using regular expressions, or even clear text.

Creating simple word based filters is quite straightforward in Fenix. However, that’s all it supports. There is no support for defining filters as regular expression. Furthermore, due to a possible snafu in the app code, some text-based filters don’t work either.

As an example, I have been using ‘.@’ as a filter for a while on Plume. This filters out the tweets that begin with ‘.@twitterhandle …’, which I rarely find useful or entertaining, on Plume.

It also filters out an occasional valid tweet, which could be avoided if Plume supported regex filters, in which case the filter would have been: ^.@\S

Fenix, sadly doesn’t accept either. There’s no support for regular expressions in filters. And using ‘.@’ produces a confusing result – filtering out a lot of tweets, both those beginning with, and not beginning with, ‘.@’. My guess is that the text string provided by the user isn’t sanitised by the app before being added to the filter regex in the code.

Allow regex based mute/filter

4. Better image previews in timeline

Fenix currently offers 3 options for image previews in timeline – large (left screen below), small (middle screen), or none.

Image preview needs a medium/cropped option along with the current large & small ones.

The large screen option looks beautiful! However, most images take up so much screen real estate that browsing through the list becomes a bit of a chore.
The small screen option makes the list quite nice and compact – perfect for quickly scrolling through. However, the size is so small that for most images, the preview doesn’t even offer much of a hint of the full image’s content. Result is user opening a lot more images in full view mode.

I really like Plume’s approach here:

full-column-width preview, cropped to a standard height.

Cropping by height ensures the image leaves space for more tweets, while the full-width preview gives a much better idea of the image’s content. It would be wonderful to have a similar middle-path image preview option in Fenix.


5. Username display

Another hangover from my Plume days, but this would be another good option to have:

Twitter username disposition

 

PS: Absolutely love the long press on link option

This is something I’ve craved in all my social media clients – Plume, Google+, Inbox, etc. No one, not even Gmail, does it as well as Fenix does.

Long press link for more options

That share popover has everything I need – link url, share button with my last used share option, open, copy and tweet. This is one of the areas where Fenix surpasses even the wildest stretches of my dream requirements. Thank you! :)


  1. The problem with that tap is that the tap target (circled in image 1) is a 44dpi icon surrounded on all sides by another, bigger tappable area (yellow highlight) that links to elsewhere in the app – opens user profile for current twitter account. This results in quite a few missed taps opening current profile instead of switching to the other twitter account.

    1. Small tap target inside a larger tappable area.
     

  2. The location/action bar swipe to switch tabs is a relatively little known UI pattern that’s extremely useful once you get used to it (image 2). Try it out if you haven’t so far.

    2. Swipe top bar to switch tabs, in Chrome for Android
     

  3. The drafts feature is always available just one tap away as a list to pick (image 3). Further, every time you go away from the compose screen (pause/stop state for those familiar with Android activity lifecycle), the text in compose box is saved as a draft automatically. Really, really love this feature!

    3. The drafts button, and (unfortunately empty) list.
     

  4. Standard local data access design patterns for Android apps. See here for more. 
Exit mobile version