summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authord34d <clark@cyngn.com>2015-11-05 13:21:43 -0800
committerd34d <clark@cyngn.com>2015-11-05 13:22:15 -0800
commit4b847d1262bd0f3038a2cdee8c9743c56bb0b803 (patch)
tree5aa6823d06b1e3f8de701157909846f666f3e9cd /res/layout
parent22b8c53850bb9839723e51e898ab25c0b4421474 (diff)
downloadpackages_apps_ThemeChooser-4b847d1262bd0f3038a2cdee8c9743c56bb0b803.tar.gz
packages_apps_ThemeChooser-4b847d1262bd0f3038a2cdee8c9743c56bb0b803.tar.bz2
packages_apps_ThemeChooser-4b847d1262bd0f3038a2cdee8c9743c56bb0b803.zip
Revert "Add live lock screen support for dogefood"
This reverts commit 590804752bc280f2905b3bf86b49e467fd0fd610. Change-Id: Ifc42fe865677179d6570d457242c6ee469947afc
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/fragment_pager_list.xml3
-rw-r--r--res/layout/live_lock_screen_card.xml43
2 files changed, 0 insertions, 46 deletions
diff --git a/res/layout/fragment_pager_list.xml b/res/layout/fragment_pager_list.xml
index 9a635b4..ff76c80 100644
--- a/res/layout/fragment_pager_list.xml
+++ b/res/layout/fragment_pager_list.xml
@@ -174,9 +174,6 @@
/>
<Space android:layout_width="match_parent"
android:layout_height="@dimen/expanded_card_margin_top" />
- <include layout="@layout/live_lock_screen_card" />
- <Space android:layout_width="match_parent"
- android:layout_height="@dimen/expanded_card_margin_top" />
<include layout="@layout/style_card" />
<Space android:layout_width="match_parent"
android:layout_height="@dimen/expanded_card_margin_top" />
diff --git a/res/layout/live_lock_screen_card.xml b/res/layout/live_lock_screen_card.xml
deleted file mode 100644
index 33cd847..0000000
--- a/res/layout/live_lock_screen_card.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2014 Cyanogen, Inc.
--->
-<com.cyngn.theme.chooser.ComponentCardView
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/live_lock_screen_preview_container"
- android:layout_width="match_parent"
- android:layout_height="320dp"
- android:orientation="vertical"
- android:background="@drawable/card_bootanim_bg">
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <!-- Need to set a valid source so this view can generate a valid bitmap
- from drawing cache, otherwise it's size is 0x0 and a null bitmap is returned -->
- <ImageView
- android:id="@+id/live_lock_screen_preview"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/expanded_card_margin_top"
- android:adjustViewBounds="true"
- android:layout_gravity="center"
- android:src="@drawable/card_bootanim_bg"/>
- <com.cyngn.theme.widget.LatoTextView
- android:id="@+id/label"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/live_lock_screen_label"
- style="@style/card_label"/>
- <LinearLayout
- android:id="@+id/empty"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:visibility="gone">
- <ImageView
- android:layout_width="20dp"
- android:layout_height="20dp"
- android:src="@drawable/ic_addcomponent"/>
- </LinearLayout>
- </FrameLayout>
-</com.cyngn.theme.chooser.ComponentCardView>