Fix styling on 2.3

Also switch to Holo Dark, which is what we wanted anyway
This commit is contained in:
YuviPanda 2013-03-20 15:03:02 +05:30
parent 6a2f0e203c
commit 2976268291
5 changed files with 5 additions and 5 deletions

View file

@ -83,6 +83,9 @@ public class MediaDetailFragment extends SherlockFragment {
title.setFocusable(editable);
title.setCursorVisible(editable);
title.setFocusableInTouchMode(editable);
if(!editable) {
title.setBackgroundDrawable(null);
}
String actualUrl = TextUtils.isEmpty(media.getImageUrl()) ? media.getLocalUri().toString() : media.getThumbnailUrl(640);
ImageLoader.getInstance().displayImage(actualUrl, image, displayOptions, new ImageLoadingListener() {