summaryrefslogtreecommitdiff
path: root/MusicDemo/src/main/res/layout/fragment_list.xml
diff options
context:
space:
mode:
Diffstat (limited to 'MusicDemo/src/main/res/layout/fragment_list.xml')
-rw-r--r--MusicDemo/src/main/res/layout/fragment_list.xml60
1 files changed, 0 insertions, 60 deletions
diff --git a/MusicDemo/src/main/res/layout/fragment_list.xml b/MusicDemo/src/main/res/layout/fragment_list.xml
deleted file mode 100644
index c169fec..0000000
--- a/MusicDemo/src/main/res/layout/fragment_list.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-<!--
- Copyright (C) 2014 The Android Open Source Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="@dimen/fragment_list_padding">
-
- <LinearLayout
- android:id="@+id/controls"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <ImageButton
- android:id="@+id/skip_previous"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:src="@drawable/ic_skip_previous_white_24dp"
- android:contentDescription="@string/skip_previous"/>
-
- <ImageButton
- android:id="@+id/play_pause"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:src="@drawable/ic_play_arrow_white_24dp"
- android:contentDescription="@string/play_pause"/>
-
- <ImageButton
- android:id="@+id/skip_next"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:src="@drawable/ic_skip_next_white_24dp"
- android:contentDescription="@string/skip_next"/>
-
- </LinearLayout>
-
- <ListView
- android:id="@+id/list_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- </ListView>
-
-</LinearLayout>