diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2013-02-23 22:31:51 +0100 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2013-02-23 22:31:51 +0100 |
commit | cca91b12b9df7c23121b4c01172863ff64d35cfe (patch) | |
tree | 905d0fe6a60f648cc28b274470624fbc06358c2f /src | |
parent | eb09aff2e6454c35075698e08485336030720156 (diff) | |
download | AntennaPod-cca91b12b9df7c23121b4c01172863ff64d35cfe.zip |
Set shownotes background to black when theme is 'dark'. fixes #106
Diffstat (limited to 'src')
-rw-r--r-- | src/de/danoeh/antennapod/fragment/ItemDescriptionFragment.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/danoeh/antennapod/fragment/ItemDescriptionFragment.java b/src/de/danoeh/antennapod/fragment/ItemDescriptionFragment.java index 52a5400ef..8f5350c8e 100644 --- a/src/de/danoeh/antennapod/fragment/ItemDescriptionFragment.java +++ b/src/de/danoeh/antennapod/fragment/ItemDescriptionFragment.java @@ -77,7 +77,7 @@ public class ItemDescriptionFragment extends SherlockFragment { && Build.VERSION.SDK_INT <= Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1) { webvDescription.setLayerType(View.LAYER_TYPE_SOFTWARE, null); } - webvDescription.setBackgroundColor(0); + webvDescription.setBackgroundColor(getResources().getColor(R.color.black)); } webvDescription.getSettings().setUseWideViewPort(false); webvDescription.getSettings().setLayoutAlgorithm( |