aboutsummaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-04-26 16:54:03 -0700
committerScott Jackson <daneren2005@gmail.com>2014-04-26 16:54:03 -0700
commit0be9df3ac3e66c806705c5312910be17007bacb2 (patch)
tree477d77a7fc9e2ac9a3b46be08a4a79cd85ece74c /res
parent3866cadd13a6a2ac65d617d14bef749688f7db50 (diff)
downloaddsub-0be9df3ac3e66c806705c5312910be17007bacb2.tar.gz
dsub-0be9df3ac3e66c806705c5312910be17007bacb2.tar.bz2
dsub-0be9df3ac3e66c806705c5312910be17007bacb2.zip
Delete unused res
Diffstat (limited to 'res')
-rw-r--r--res/layout/album_list_item.xml58
1 files changed, 0 insertions, 58 deletions
diff --git a/res/layout/album_list_item.xml b/res/layout/album_list_item.xml
deleted file mode 100644
index 99a9ed88..00000000
--- a/res/layout/album_list_item.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@id/drag_handle"
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
-
- <ImageView
- android:id="@+id/album_coverart"
- android:layout_width="@dimen/AlbumArt.Small"
- android:layout_height="@dimen/AlbumArt.Small"
- android:layout_gravity="left|center_vertical"/>
-
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="0dip"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:layout_gravity="left|center_vertical"
- android:paddingLeft="10dip"
- android:paddingRight="3dip">
-
- <TextView
- android:id="@+id/album_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceMedium"
- android:singleLine="true"
- android:ellipsize="marquee"/>
-
- <TextView
- android:id="@+id/album_artist"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:singleLine="true"/>
-
- </LinearLayout>
-
- <ImageButton
- android:id="@+id/album_star"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="right|center_vertical"
- android:src="@drawable/ic_stat_star"
- android:background="@android:color/transparent"
- android:focusable="false"
- android:visibility="gone"/>
-
- <ImageView
- android:id="@+id/album_more"
- android:src="?attr/download_none"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:layout_gravity="right|center_vertical"
- android:paddingRight="10dip"
- android:background="@drawable/menubar_button"/>
-</LinearLayout>