aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--res/layout/select_album_footer.xml21
-rw-r--r--src/github/daneren2005/dsub/fragments/SelectDirectoryFragment.java2
2 files changed, 0 insertions, 23 deletions
diff --git a/res/layout/select_album_footer.xml b/res/layout/select_album_footer.xml
deleted file mode 100644
index c1a30a1a..00000000
--- a/res/layout/select_album_footer.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:background="@android:color/transparent"
- android:paddingTop="6dp"
- android:paddingBottom="0dp"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
-
- <Button android:id="@+id/select_album_more"
- android:text="@string/select_album.more"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:visibility="gone"
- android:layout_marginLeft="6dp"
- android:layout_marginRight="6dp"
- android:layout_weight="1"
- android:layout_width="0dp"
- android:layout_height="fill_parent"/>
-
-</LinearLayout>
-
diff --git a/src/github/daneren2005/dsub/fragments/SelectDirectoryFragment.java b/src/github/daneren2005/dsub/fragments/SelectDirectoryFragment.java
index e17d2d7b..bbb68fa4 100644
--- a/src/github/daneren2005/dsub/fragments/SelectDirectoryFragment.java
+++ b/src/github/daneren2005/dsub/fragments/SelectDirectoryFragment.java
@@ -45,7 +45,6 @@ public class SelectDirectoryFragment extends SubsonicFragment implements Adapter
private DragSortListView entryList;
int rootId;
- private View footer;
private View emptyView;
private boolean hideButtons = false;
private Boolean licenseValid;
@@ -96,7 +95,6 @@ public class SelectDirectoryFragment extends SubsonicFragment implements Adapter
rootView.setId(rootId);
entryList = (DragSortListView) rootView.findViewById(R.id.select_album_entries);
- footer = LayoutInflater.from(context).inflate(R.layout.select_album_footer, entryList, false);
entryList.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
entryList.setOnItemClickListener(this);
entryList.setDropListener(new DragSortListView.DropListener() {