diff --git a/samples/Support7Demos/AndroidManifest.xml b/samples/Support7Demos/AndroidManifest.xml
index f48500ad5..288b124e8 100644
--- a/samples/Support7Demos/AndroidManifest.xml
+++ b/samples/Support7Demos/AndroidManifest.xml
@@ -176,15 +176,6 @@
-
-
-
-
-
-
-
@@ -307,15 +298,6 @@
-
-
-
-
-
-
-
diff --git a/samples/Support7Demos/res/drawable-hdpi/ic_edit.png b/samples/Support7Demos/res/drawable-hdpi/ic_edit.png
deleted file mode 100644
index b900af02c..000000000
Binary files a/samples/Support7Demos/res/drawable-hdpi/ic_edit.png and /dev/null differ
diff --git a/samples/Support7Demos/res/layout/toolbar_tint_icons.xml b/samples/Support7Demos/res/layout/toolbar_tint_icons.xml
deleted file mode 100644
index ee30e063b..000000000
--- a/samples/Support7Demos/res/layout/toolbar_tint_icons.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/samples/Support7Demos/res/menu/actions_tint.xml b/samples/Support7Demos/res/menu/actions_tint.xml
deleted file mode 100644
index b218697fe..000000000
--- a/samples/Support7Demos/res/menu/actions_tint.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
diff --git a/samples/Support7Demos/res/values/strings.xml b/samples/Support7Demos/res/values/strings.xml
index d9d8fe072..accf739d1 100644
--- a/samples/Support7Demos/res/values/strings.xml
+++ b/samples/Support7Demos/res/values/strings.xml
@@ -62,7 +62,6 @@
AppCompat/Widgets/Buttons
AppCompat/Widgets/Spinners
AppCompat/Widgets/Text Input
- AppCompat/Action Bar/Tinted Icons
Search
Add
@@ -133,7 +132,6 @@
AppCompat/Toolbar/Toolbar Display Options
AppCompat/Toolbar/Toolbar Fragment ViewPager
AppCompat/Toolbar/Action Mode
- AppCompat/Toolbar/Tinted Icons
AppCompat/Dialog/Dialog Usage
My great dialog
@@ -183,11 +181,6 @@
Sorted List
Add New Item
Start Action Mode
- Tint navigation button
- Clear navigation button tint
- Tint overflow button
- Clear overflow button tint
- Dummy item
RecyclerView/ItemTouchHelper/Swipe To Dismiss
RecyclerView/ItemTouchHelper/Drag and Drop Activity
diff --git a/samples/Support7Demos/src/com/example/android/supportv7/app/ActionBarTintIcons.java b/samples/Support7Demos/src/com/example/android/supportv7/app/ActionBarTintIcons.java
deleted file mode 100644
index b8d647298..000000000
--- a/samples/Support7Demos/src/com/example/android/supportv7/app/ActionBarTintIcons.java
+++ /dev/null
@@ -1,55 +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.example.android.supportv7.app;
-
-import com.example.android.supportv7.R;
-
-import android.content.res.ColorStateList;
-import android.graphics.Color;
-import android.graphics.drawable.Drawable;
-import android.os.Bundle;
-import android.support.v4.view.MenuItemCompat;
-import android.support.v7.app.AppCompatActivity;
-import android.support.v7.widget.SearchView;
-import android.text.TextUtils;
-import android.view.Menu;
-import android.view.MenuInflater;
-import android.view.MenuItem;
-import android.widget.TextView;
-import android.widget.Toast;
-
-/**
- * This demonstrates the use of tinted menu items, both via menu resources and dynamically via
- * MenuItemCompat.
- */
-public class ActionBarTintIcons extends AppCompatActivity {
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- }
-
- @Override
- public boolean onCreateOptionsMenu(Menu menu) {
- getMenuInflater().inflate(R.menu.actions_tint, menu);
-
- MenuItem item = menu.findItem(R.id.action_edit);
- MenuItemCompat.setIconTintList(item, ColorStateList.valueOf(Color.GREEN));
-
- return true;
- }
-}
diff --git a/samples/Support7Demos/src/com/example/android/supportv7/app/ToolbarTintIcons.java b/samples/Support7Demos/src/com/example/android/supportv7/app/ToolbarTintIcons.java
deleted file mode 100644
index 150cbd5d2..000000000
--- a/samples/Support7Demos/src/com/example/android/supportv7/app/ToolbarTintIcons.java
+++ /dev/null
@@ -1,75 +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.example.android.supportv7.app;
-
-import com.example.android.supportv7.R;
-
-import android.content.res.ColorStateList;
-import android.graphics.Color;
-import android.os.Bundle;
-import android.support.v7.app.AppCompatActivity;
-import android.support.v7.widget.Toolbar;
-import android.view.Menu;
-import android.view.View;
-
-/**
- * This demonstrates the use of tinted navigation and overflow items.
- */
-public class ToolbarTintIcons extends AppCompatActivity implements View.OnClickListener {
-
- private Toolbar mToolbar;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.toolbar_tint_icons);
-
- mToolbar = (Toolbar) findViewById(R.id.toolbar);
- setSupportActionBar(mToolbar);
-
- getSupportActionBar().setDisplayHomeAsUpEnabled(true);
-
- findViewById(R.id.btn_tint_navigation).setOnClickListener(this);
- findViewById(R.id.btn_tint_navigation_clear).setOnClickListener(this);
- findViewById(R.id.btn_tint_overflow).setOnClickListener(this);
- findViewById(R.id.btn_tint_overflow_clear).setOnClickListener(this);
- }
-
- @Override
- public boolean onCreateOptionsMenu(Menu menu) {
- getMenuInflater().inflate(R.menu.actions_tint, menu);
- return true;
- }
-
- @Override
- public void onClick(View v) {
- switch (v.getId()) {
- case R.id.btn_tint_navigation:
- mToolbar.setNavigationTintList(ColorStateList.valueOf(Color.BLUE));
- break;
- case R.id.btn_tint_navigation_clear:
- mToolbar.setNavigationTintList(null);
- break;
- case R.id.btn_tint_overflow:
- mToolbar.setOverflowTintList(ColorStateList.valueOf(Color.RED));
- break;
- case R.id.btn_tint_overflow_clear:
- mToolbar.setOverflowTintList(null);
- break;
- }
- }
-}