aboutsummaryrefslogtreecommitdiffstats
path: root/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/now_playing_after.xml
diff options
context:
space:
mode:
Diffstat (limited to 'lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/now_playing_after.xml')
-rw-r--r--lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/now_playing_after.xml53
1 files changed, 0 insertions, 53 deletions
diff --git a/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/now_playing_after.xml b/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/now_playing_after.xml
deleted file mode 100644
index 367a044..0000000
--- a/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/now_playing_after.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/now_playing"
- android:layout_width="fill_parent"
- android:layout_height="@dimen/now_playing_height"
- android:orientation="horizontal">
- <LinearLayout
- android:background="@color/background2"
- android:paddingLeft="14dip"
- android:paddingRight="14dip"
- android:paddingTop="10dip"
- android:paddingBottom="10dip"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="1"
- android:orientation="vertical">
- <TextView
- android:id="@+id/now_playing_title"
- android:duplicateParentState="true"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textStyle="bold"
- android:textSize="@dimen/text_size_large"
- android:textColor="@color/foreground1"
- android:text="@string/now_playing_after_title"
- android:maxLines="2"
- android:ellipsize="end" />
- <TextView
- android:id="@+id/now_playing_subtitle"
- android:duplicateParentState="true"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:paddingTop="3dip"
- android:textColor="@color/foreground2"
- android:textSize="@dimen/text_size_small"
- android:text="@string/now_playing_after_subtitle"
- android:singleLine="true"
- android:ellipsize="end" />
- </LinearLayout>
- <View
- android:layout_width="1px"
- android:layout_height="fill_parent"
- android:background="@android:color/white" />
- <ImageButton
- android:background="@drawable/btn_now_playing_more"
- android:id="@+id/now_playing_more"
- android:src="@drawable/ic_now_playing_logo"
- android:padding="12dip"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:onClick="onNowPlayingLogoClick"
- android:scaleType="center" />
-</LinearLayout>