summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authord34d <clark@cyngn.com>2015-04-21 20:19:30 -0700
committerGerrit Code Review <gerrit@cyngn.com>2015-04-22 19:57:10 +0000
commit2082fea1fbad21dc9d6e07c98151640bfbc169c2 (patch)
treecd9b9c6f33b5419e947fe1ed7db1069576cee7ce /res/layout
parent04e482b0fb116c5fd0be87add3192b93ec35be0a (diff)
downloadpackages_apps_ThemeChooser-2082fea1fbad21dc9d6e07c98151640bfbc169c2.tar.gz
packages_apps_ThemeChooser-2082fea1fbad21dc9d6e07c98151640bfbc169c2.tar.bz2
packages_apps_ThemeChooser-2082fea1fbad21dc9d6e07c98151640bfbc169c2.zip
Remove direct references to private framework resources
This will allow us to distribute the chooser. Private resources were either redefined in our xml or reflection is used to retrieve these values in code. Change-Id: I8c901abef6a5492094d4b86752368625a385bb47
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/bottom_actions.xml2
-rw-r--r--res/layout/component_selector.xml2
-rw-r--r--res/layout/fragment_pager_list.xml2
-rw-r--r--res/layout/navbar_card.xml2
-rw-r--r--res/layout/save_apply_button.xml2
-rw-r--r--res/layout/status_bar_card.xml10
6 files changed, 10 insertions, 10 deletions
diff --git a/res/layout/bottom_actions.xml b/res/layout/bottom_actions.xml
index b2eb936..0797ced 100644
--- a/res/layout/bottom_actions.xml
+++ b/res/layout/bottom_actions.xml
@@ -77,5 +77,5 @@
<com.cyngn.theme.widget.NavBarSpace
android:layout_width="match_parent"
- android:layout_height="@*android:dimen/navigation_bar_height"/>
+ android:layout_height="@dimen/navigation_bar_height"/>
</LinearLayout> \ No newline at end of file
diff --git a/res/layout/component_selector.xml b/res/layout/component_selector.xml
index 7c2bd53..747e776 100644
--- a/res/layout/component_selector.xml
+++ b/res/layout/component_selector.xml
@@ -30,5 +30,5 @@
<com.cyngn.theme.widget.NavBarSpace
android:layout_width="match_parent"
- android:layout_height="@*android:dimen/navigation_bar_height"/>
+ android:layout_height="@dimen/navigation_bar_height"/>
</com.cyngn.theme.chooser.ComponentSelector> \ No newline at end of file
diff --git a/res/layout/fragment_pager_list.xml b/res/layout/fragment_pager_list.xml
index 5e30f13..fc08626 100644
--- a/res/layout/fragment_pager_list.xml
+++ b/res/layout/fragment_pager_list.xml
@@ -198,7 +198,7 @@
<com.cyngn.theme.widget.NavBarSpace
android:layout_width="match_parent"
- android:layout_height="@*android:dimen/navigation_bar_height" />
+ android:layout_height="@dimen/navigation_bar_height" />
</LinearLayout>
</LinearLayout>
</com.cyngn.theme.widget.LockableScrollView>
diff --git a/res/layout/navbar_card.xml b/res/layout/navbar_card.xml
index bc95df0..729d789 100644
--- a/res/layout/navbar_card.xml
+++ b/res/layout/navbar_card.xml
@@ -27,7 +27,7 @@
android:id="@+id/navigation_bar"
android:orientation="horizontal"
android:layout_width="match_parent"
- android:layout_height="@*android:dimen/navigation_bar_height"
+ android:layout_height="@dimen/navigation_bar_height"
android:paddingStart="6dp"
android:paddingEnd="6dp"
android:background="#000">
diff --git a/res/layout/save_apply_button.xml b/res/layout/save_apply_button.xml
index c1791f1..edbe962 100644
--- a/res/layout/save_apply_button.xml
+++ b/res/layout/save_apply_button.xml
@@ -32,6 +32,6 @@
<com.cyngn.theme.widget.NavBarSpace
android:layout_width="match_parent"
- android:layout_height="@*android:dimen/navigation_bar_height"/>
+ android:layout_height="@dimen/navigation_bar_height"/>
</LinearLayout> \ No newline at end of file
diff --git a/res/layout/status_bar_card.xml b/res/layout/status_bar_card.xml
index ad50167..96e4113 100644
--- a/res/layout/status_bar_card.xml
+++ b/res/layout/status_bar_card.xml
@@ -28,7 +28,7 @@
android:id="@+id/status_bar"
android:orientation="horizontal"
android:layout_width="match_parent"
- android:layout_height="@*android:dimen/status_bar_height"
+ android:layout_height="@dimen/status_bar_height"
android:paddingEnd="6dp"
android:background="#000">
@@ -41,7 +41,7 @@
<ImageView
android:id="@+id/bluetooth_icon"
android:layout_width="wrap_content"
- android:layout_height="@*android:dimen/status_bar_icon_size"
+ android:layout_height="@dimen/status_bar_icon_size"
android:layout_gravity="center_vertical"
android:paddingEnd="6dp"
android:scaleType="fitCenter"/>
@@ -49,14 +49,14 @@
<ImageView
android:id="@+id/wifi_icon"
android:layout_width="wrap_content"
- android:layout_height="@*android:dimen/status_bar_icon_size"
+ android:layout_height="@dimen/status_bar_icon_size"
android:layout_gravity="center_vertical"
android:scaleType="fitCenter"/>
<ImageView
android:id="@+id/signal_icon"
android:layout_width="wrap_content"
- android:layout_height="@*android:dimen/status_bar_icon_size"
+ android:layout_height="@dimen/status_bar_icon_size"
android:layout_gravity="center_vertical"
android:paddingEnd="6dp"
android:scaleType="fitCenter"/>
@@ -64,7 +64,7 @@
<ImageView
android:id="@+id/battery"
android:layout_width="wrap_content"
- android:layout_height="@*android:dimen/status_bar_icon_size"
+ android:layout_height="@dimen/status_bar_icon_size"
android:layout_gravity="center_vertical"
android:paddingEnd="6dp"
android:scaleType="fitCenter"/>