Replace xml drawables pointing to local resource.
Change-Id: I5496d911205db0f4cc49fb1ce4774bbb444c7bcd
diff --git a/res/drawable/qc_menu_selector.xml b/res/drawable/qc_menu_selector.xml
index 141f165..1c7f13c 100644
--- a/res/drawable/qc_menu_selector.xml
+++ b/res/drawable/qc_menu_selector.xml
@@ -16,6 +16,6 @@
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
- android:drawable="@*android:drawable/list_selector_pressed_holo_dark" />
+ android:drawable="@drawable/list_selector_pressed_holo_dark" />
<item android:state_pressed="false" android:drawable="@drawable/clear" />
</selector>
diff --git a/res/layout/suggestion_item.xml b/res/layout/suggestion_item.xml
index 0adea1b..1bc5455 100644
--- a/res/layout/suggestion_item.xml
+++ b/res/layout/suggestion_item.xml
@@ -66,7 +66,7 @@
android:layout_height="match_parent"
android:id="@+id/divider"
android:scaleType="center"
- android:background="@*android:drawable/list_divider_holo_light"
+ android:background="@drawable/list_divider_holo_light"
/>
<ImageView
android:layout_width="wrap_content"
diff --git a/res/layout/title_bar_snapshot.xml b/res/layout/title_bar_snapshot.xml
index 0e2ab1c..c46dd6f 100644
--- a/res/layout/title_bar_snapshot.xml
+++ b/res/layout/title_bar_snapshot.xml
@@ -65,6 +65,6 @@
android:layout_height="match_parent"
style="@style/HoloButton"
android:gravity="center_vertical"
- android:src="@*android:drawable/ic_menu_moreoverflow_normal_holo_dark"
+ android:src="@drawable/ic_menu_moreoverflow_normal_holo_dark"
android:contentDescription="@string/accessibility_button_more" />
</com.android.browser.SnapshotBar>
diff --git a/res/menu/browser.xml b/res/menu/browser.xml
index 22ad532..7786034 100644
--- a/res/menu/browser.xml
+++ b/res/menu/browser.xml
@@ -4,9 +4,9 @@
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.
@@ -30,7 +30,7 @@
<item
android:id="@+id/forward_menu_id"
android:title="@string/forward"
- android:icon="@*android:drawable/ic_menu_forward" />
+ android:icon="@drawable/ic_menu_forward" />
</group>
<item
android:id="@+id/back_menu_id"
@@ -153,11 +153,11 @@
<!-- these items are toggled in and out of @+id/stop_reload_menu_id -->
<item android:id="@+id/stop_menu_id"
android:title="@string/stop"
- android:icon="@*android:drawable/ic_menu_stop"
+ android:icon="@drawable/ic_menu_stop"
android:visible="false" />
<item android:id="@+id/reload_menu_id"
android:title="@string/reload"
- android:icon="@*android:drawable/ic_menu_refresh"
+ android:icon="@drawable/ic_menu_refresh"
android:visible="false" />
</menu>
-
+