81 lines
2.5 KiB
XML
81 lines
2.5 KiB
XML
<?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"
|
|
android:padding="6dp" >
|
|
|
|
<ImageView
|
|
android:id="@+id/select_album_select"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="?attr/select_all"
|
|
android:visibility="gone" />
|
|
|
|
<ImageView
|
|
android:id="@+id/select_album_play_now"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="?attr/media_play"
|
|
android:visibility="gone" />
|
|
|
|
<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" />
|
|
|
|
<ImageView
|
|
android:id="@+id/select_album_play_last"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="?attr/add_to_queue"
|
|
android:visibility="gone" />
|
|
|
|
<ImageView
|
|
android:id="@+id/select_album_pin"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="?attr/pin"
|
|
android:visibility="gone" />
|
|
|
|
<ImageView
|
|
android:id="@+id/select_album_unpin"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="?attr/unpin"
|
|
android:visibility="gone" />
|
|
|
|
<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" />
|
|
|
|
<ImageView
|
|
android:id="@+id/select_album_delete"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="?attr/exit"
|
|
android:visibility="gone" />
|
|
|
|
<ImageView
|
|
android:id="@+id/select_album_more"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="?attr/forward"
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout> |