2013-04-27 11:42:16 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/menu_album"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
2013-05-16 09:59:55 +02:00
|
|
|
android:padding="6dp" >
|
2013-04-27 11:42:16 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/select_album_select"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2013-04-28 01:01:34 +02:00
|
|
|
android:src="?attr/select_all"
|
2013-04-27 11:42:16 +02:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/select_album_play_now"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2013-04-30 08:06:01 +02:00
|
|
|
android:src="?attr/media_play"
|
2013-04-27 11:42:16 +02:00
|
|
|
android:visibility="gone" />
|
2013-04-29 06:44:49 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/select_album_play_next"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:src="?attr/media_play_next"
|
|
|
|
android:visibility="gone" />
|
2013-04-27 11:42:16 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/select_album_play_last"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2013-04-28 01:01:34 +02:00
|
|
|
android:src="?attr/add_to_queue"
|
2013-04-27 11:42:16 +02:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/select_album_pin"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2013-04-28 01:01:34 +02:00
|
|
|
android:src="?attr/pin"
|
2013-04-27 11:42:16 +02:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/select_album_unpin"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2013-04-28 01:01:34 +02:00
|
|
|
android:src="?attr/unpin"
|
2013-04-27 11:42:16 +02:00
|
|
|
android:visibility="gone" />
|
2013-05-26 08:46:37 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/select_album_download"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:src="?attr/downloaded"
|
|
|
|
android:visibility="gone" />
|
2013-04-27 11:42:16 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/select_album_delete"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2013-04-28 01:01:34 +02:00
|
|
|
android:src="?attr/exit"
|
2013-04-27 11:42:16 +02:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/select_album_more"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2013-04-28 01:01:34 +02:00
|
|
|
android:src="?attr/forward"
|
2013-04-27 11:42:16 +02:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
</LinearLayout>
|