aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Bestas <mikeioannina@cyanogenmod.org>2016-06-01 20:58:42 +0300
committerMichael Bestas <mikeioannina@cyanogenmod.org>2016-06-01 21:06:33 +0300
commit4a538eb3e7be9d49c516acb60eabe0195a764e8e (patch)
tree41e63ac6b2efed970f7749269ad90cc0823e54b5
parent1112f87089fbbe2e7dc3fdec7cb4b773c6f3eea3 (diff)
downloadandroid_external_ahbottomnavigation-4a538eb3e7be9d49c516acb60eabe0195a764e8e.tar.gz
android_external_ahbottomnavigation-4a538eb3e7be9d49c516acb60eabe0195a764e8e.tar.bz2
android_external_ahbottomnavigation-4a538eb3e7be9d49c516acb60eabe0195a764e8e.zip
Fix compilation error
com.android.sched.scheduler.RunnerProcessException: Error during 'FieldAnnotationBuilder' runner on 'private int com.aurelhubert.ahbottomnavigation.AHBottomNavigation.itemActiveColor (/home/mike/android/cm-13.0/external/ahbottomnavigation/ahbottomnavigation/src/main/java/ com/aurelhubert/ahbottomnavigation/AHBottomNavigation.java:76.24-76.38)': duplicate type: android.support.annotation.ColorInt Change-Id: I7e3085d00abf024f229c16cedc8d713b6a2c95d1
-rw-r--r--ahbottomnavigation/src/main/java/com/aurelhubert/ahbottomnavigation/AHBottomNavigation.java13
1 files changed, 7 insertions, 6 deletions
diff --git a/ahbottomnavigation/src/main/java/com/aurelhubert/ahbottomnavigation/AHBottomNavigation.java b/ahbottomnavigation/src/main/java/com/aurelhubert/ahbottomnavigation/AHBottomNavigation.java
index 87ee79c..03cf0f5 100644
--- a/ahbottomnavigation/src/main/java/com/aurelhubert/ahbottomnavigation/AHBottomNavigation.java
+++ b/ahbottomnavigation/src/main/java/com/aurelhubert/ahbottomnavigation/AHBottomNavigation.java
@@ -71,11 +71,12 @@ public class AHBottomNavigation extends FrameLayout {
// Variables (Styles)
private Typeface titleTypeface;
private int defaultBackgroundColor = Color.WHITE;
- //private int accentColor = Color.WHITE;
- //private int inactiveColor = Color.WHITE;
- private @ColorInt int itemActiveColor, itemInactiveColor;
- private @ColorInt int titleColorActive, titleColorInactive;
- private @ColorInt int coloredTitleColorActive, coloredTitleColorInactive;
+ private @ColorInt int itemActiveColor;
+ private @ColorInt int itemInactiveColor;
+ private @ColorInt int titleColorActive;
+ private @ColorInt int titleColorInactive;
+ private @ColorInt int coloredTitleColorActive;
+ private @ColorInt int coloredTitleColorInactive;
private float titleActiveTextSize, titleInactiveTextSize;
private int bottomNavigationHeight;
private float selectedItemWidth, notSelectedItemWidth;
@@ -1211,4 +1212,4 @@ public class AHBottomNavigation extends FrameLayout {
void onTabSelected(int position, boolean wasSelected);
}
-} \ No newline at end of file
+}