summaryrefslogtreecommitdiffstats
path: root/res/layout/grid_items_normal.xml
diff options
context:
space:
mode:
authorRoman Birg <roman@cyngn.com>2014-08-15 14:19:37 -0700
committerlinus_lee <llee@cyngn.com>2014-11-20 11:58:11 -0800
commited9fc5fb2ca17b5892ab264b271a1bf66265bc30 (patch)
treeb8149287138864d6d030ae5b9fe6f1ed31c241fe /res/layout/grid_items_normal.xml
parent7ea6a020dca0ce8f13c34b497275e3246315c4a3 (diff)
downloadandroid_packages_apps_Eleven-ed9fc5fb2ca17b5892ab264b271a1bf66265bc30.tar.gz
android_packages_apps_Eleven-ed9fc5fb2ca17b5892ab264b271a1bf66265bc30.tar.bz2
android_packages_apps_Eleven-ed9fc5fb2ca17b5892ab264b271a1bf66265bc30.zip
Eleven: strip out app-level theming
Because we want to be able to #blamethemes for real. Change-Id: I4730f96eaf7d5d77b3886aa65b2a739ace38ae3f Signed-off-by: Roman Birg <roman@cyngn.com>
Diffstat (limited to 'res/layout/grid_items_normal.xml')
-rw-r--r--res/layout/grid_items_normal.xml11
1 files changed, 4 insertions, 7 deletions
diff --git a/res/layout/grid_items_normal.xml b/res/layout/grid_items_normal.xml
index 96df42a..69c447d 100644
--- a/res/layout/grid_items_normal.xml
+++ b/res/layout/grid_items_normal.xml
@@ -15,7 +15,6 @@
limitations under the License.
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res/com.cyngn.eleven"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical" >
@@ -30,7 +29,7 @@
android:gravity="center_vertical"
android:paddingLeft="@dimen/grid_item_padding_left" >
- <com.cyngn.eleven.widgets.theme.ThemeableTextView
+ <TextView
android:id="@+id/line_one"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -38,18 +37,16 @@
android:maxLines="2"
android:textColor="@color/white"
android:textSize="@dimen/text_size_medium"
- android:textStyle="bold"
- app:themeResource="@null" />
+ android:textStyle="bold" />
- <com.cyngn.eleven.widgets.theme.ThemeableTextView
+ <TextView
android:id="@+id/line_two"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/line_one"
android:singleLine="true"
android:textColor="@color/transparent_white"
- android:textSize="@dimen/text_size_small"
- app:themeResource="@null" />
+ android:textSize="@dimen/text_size_small" />
</RelativeLayout>
</RelativeLayout> \ No newline at end of file