artem-zinnatullin / android-wail-app

DEPRECATED Android Last.fm scrobbler. Recruiters: please don't look at this project.
MIT License
121 stars 36 forks source link

RTL support #182

Open regisd opened 9 years ago

regisd commented 9 years ago

Update the layouts so thatRight-to-left languages are supported. This would be required for Persan #122

regisd commented 9 years ago

TODO

  1. Update layout to use "start" rather than "left", and "end" rather than "right" (in most cases)
  2. Update code to avoid string concatenation, eg: don't setContentText(track.getArtist() + " - " + track.getTrack()) but instead setContentText(getString(R.string.bla, track.getArtist(), track.getTrack()