diff --git a/res/anim/fab_elevation.xml b/res/anim/fab_elevation.xml
deleted file mode 100644
index af75db0cf14..00000000000
--- a/res/anim/fab_elevation.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- -
-
-
-
-
- -
-
-
-
-
-
\ No newline at end of file
diff --git a/res/drawable/fab_background.xml b/res/drawable/fab_background.xml
deleted file mode 100644
index a692a2a2b03..00000000000
--- a/res/drawable/fab_background.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
- -
-
-
-
-
-
\ No newline at end of file
diff --git a/res/layout/preference_list_fragment.xml b/res/layout/preference_list_fragment.xml
index 9f1e0765786..0eac5f954e9 100644
--- a/res/layout/preference_list_fragment.xml
+++ b/res/layout/preference_list_fragment.xml
@@ -52,18 +52,6 @@
-
-
72dp
328dp
48dp
- 24dp
diff --git a/res/values/arrays.xml b/res/values/arrays.xml
index 6827e5bf718..4a4d742024d 100644
--- a/res/values/arrays.xml
+++ b/res/values/arrays.xml
@@ -967,13 +967,6 @@
- \?
-
- - @color/memory_normal
- - @color/memory_moderate
- - @color/memory_low
- - @color/memory_critical
-
-
- @string/daltonizer_mode_deuteranomaly
diff --git a/res/values/colors.xml b/res/values/colors.xml
index 81f3d32873e..57fc8ddabbb 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -21,16 +21,7 @@
#FFCED7DB
- #F00
- @color/material_empty_color_light
- #00796B
- #3367D6
- #0097A7
- #689F38
- #283593
- #7B1FA2
- #479392
- #316665
+
#ff9a9a9a
#ff666666
@@ -83,19 +74,8 @@
#ff5621
#263238
#60000000
- #1fffffff
- ?android:attr/colorAccent
#33b5e5
- #009688
-
- #ff009587
- #ffF3B300
- #ffff9700
- #ffff5621
-
- #ff384248
-
@color/system_warning_color
diff --git a/res/values/dimens.xml b/res/values/dimens.xml
index c50e2267784..772d50c8b80 100755
--- a/res/values/dimens.xml
+++ b/res/values/dimens.xml
@@ -238,10 +238,6 @@
48dp
@dimen/match_parent
0dp
- 56dp
- 16dp
- 12dp
- 9dp
16dp
diff --git a/src/com/android/settings/SettingsPreferenceFragment.java b/src/com/android/settings/SettingsPreferenceFragment.java
index a992897623f..c0a9a6a07c4 100644
--- a/src/com/android/settings/SettingsPreferenceFragment.java
+++ b/src/com/android/settings/SettingsPreferenceFragment.java
@@ -43,7 +43,6 @@ import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import com.android.settings.applications.LayoutPreference;
-import com.android.settings.widget.FloatingActionButton;
import com.android.settingslib.HelpUtils;
import java.util.UUID;
@@ -90,7 +89,6 @@ public abstract class SettingsPreferenceFragment extends InstrumentedPreferenceF
};
private ViewGroup mPinnedHeaderFrameLayout;
- private FloatingActionButton mFloatingActionButton;
private ViewGroup mButtonBar;
private LayoutPreference mHeader;
@@ -128,7 +126,6 @@ public abstract class SettingsPreferenceFragment extends InstrumentedPreferenceF
Bundle savedInstanceState) {
final View root = super.onCreateView(inflater, container, savedInstanceState);
mPinnedHeaderFrameLayout = (ViewGroup) root.findViewById(R.id.pinned_header);
- mFloatingActionButton = (FloatingActionButton) root.findViewById(R.id.fab);
mButtonBar = (ViewGroup) root.findViewById(R.id.button_bar);
return root;
}
@@ -156,10 +153,6 @@ public abstract class SettingsPreferenceFragment extends InstrumentedPreferenceF
}
}
- public FloatingActionButton getFloatingActionButton() {
- return mFloatingActionButton;
- }
-
public ViewGroup getButtonBar() {
return mButtonBar;
}
diff --git a/src/com/android/settings/widget/FloatingActionButton.java b/src/com/android/settings/widget/FloatingActionButton.java
deleted file mode 100644
index 181c6c077cf..00000000000
--- a/src/com/android/settings/widget/FloatingActionButton.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2015 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.settings.widget;
-
-import android.animation.AnimatorInflater;
-import android.content.Context;
-import android.graphics.Outline;
-import android.util.AttributeSet;
-import android.view.View;
-import android.view.ViewOutlineProvider;
-import android.widget.ImageView;
-
-import com.android.settings.R;
-
-public class FloatingActionButton extends ImageView {
-
- public FloatingActionButton(Context context, AttributeSet attrs) {
- super(context, attrs);
- setScaleType(ScaleType.CENTER);
- setStateListAnimator(AnimatorInflater.loadStateListAnimator(context, R.anim.fab_elevation));
- setOutlineProvider(new ViewOutlineProvider() {
- @Override
- public void getOutline(View view, Outline outline) {
- outline.setOval(0, 0, getWidth(), getHeight());
- }
- });
- setClipToOutline(true);
- }
-
- @Override
- protected void onSizeChanged(int w, int h, int oldw, int oldh) {
- super.onSizeChanged(w, h, oldw, oldh);
- invalidateOutline();
- }
-}