aboutsummaryrefslogtreecommitdiffstats
path: root/main/src
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2012-04-28 10:19:53 +0200
committerBananeweizen <bananeweizen@gmx.de>2012-04-28 10:19:53 +0200
commit4c965846214c20be58408f94785584f987371cb9 (patch)
tree93e0fcfafed5c4df323a6825c7bc310488d004db /main/src
parent007a934558614322b802ea70d9962252724340d0 (diff)
downloadcgeo-4c965846214c20be58408f94785584f987371cb9.zip
cgeo-4c965846214c20be58408f94785584f987371cb9.tar.gz
cgeo-4c965846214c20be58408f94785584f987371cb9.tar.bz2
fix #1434: Font color in selection mode
Diffstat (limited to 'main/src')
-rw-r--r--main/src/cgeo/geocaching/ui/CacheListAdapter.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/main/src/cgeo/geocaching/ui/CacheListAdapter.java b/main/src/cgeo/geocaching/ui/CacheListAdapter.java
index 9f2d69d..1cd05f0 100644
--- a/main/src/cgeo/geocaching/ui/CacheListAdapter.java
+++ b/main/src/cgeo/geocaching/ui/CacheListAdapter.java
@@ -35,7 +35,6 @@ import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.view.animation.AccelerateDecelerateInterpolator;
-import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.AnimationSet;
import android.view.animation.TranslateAnimation;
@@ -73,7 +72,6 @@ public class CacheListAdapter extends ArrayAdapter<cgCache> {
private static final int SWIPE_MIN_DISTANCE = 60;
private static final int SWIPE_MAX_OFF_PATH = 100;
private static final int SWIPE_DISTANCE = 80;
- private static final float SWIPE_OPACITY = 0.5f;
/**
* time in milliseconds after which the list may be resorted due to position updates
*/
@@ -798,21 +796,12 @@ public class CacheListAdapter extends ArrayAdapter<cgCache> {
showCheckbox.setFillAfter(true);
showCheckbox.setInterpolator(new AccelerateDecelerateInterpolator());
- // dim cache info
- final Animation dimInfo = new AlphaAnimation(1.0f, SWIPE_OPACITY);
- dimInfo.setRepeatCount(0);
- dimInfo.setDuration(force ? 0 : 400);
- dimInfo.setFillEnabled(true);
- dimInfo.setFillAfter(true);
- dimInfo.setInterpolator(new AccelerateDecelerateInterpolator());
-
// animation set (container)
final AnimationSet selectAnimation = new AnimationSet(true);
selectAnimation.setFillEnabled(true);
selectAnimation.setFillAfter(true);
selectAnimation.addAnimation(showCheckbox);
- selectAnimation.addAnimation(dimInfo);
holder.oneInfo.startAnimation(selectAnimation);
cache.setStatusCheckedView(true);
@@ -833,21 +822,12 @@ public class CacheListAdapter extends ArrayAdapter<cgCache> {
hideCheckbox.setFillAfter(true);
hideCheckbox.setInterpolator(new AccelerateDecelerateInterpolator());
- // brighten cache info
- final Animation brightenInfo = new AlphaAnimation(SWIPE_OPACITY, 1.0f);
- brightenInfo.setRepeatCount(0);
- brightenInfo.setDuration(force ? 0 : 400);
- brightenInfo.setFillEnabled(true);
- brightenInfo.setFillAfter(true);
- brightenInfo.setInterpolator(new AccelerateDecelerateInterpolator());
-
// animation set (container)
final AnimationSet selectAnimation = new AnimationSet(true);
selectAnimation.setFillEnabled(true);
selectAnimation.setFillAfter(true);
selectAnimation.addAnimation(hideCheckbox);
- selectAnimation.addAnimation(brightenInfo);
holder.oneInfo.startAnimation(selectAnimation);
cache.setStatusCheckedView(false);