From cfd014d38cba03ba05f571597b361ab253bff578 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Sat, 25 Apr 2015 17:03:02 -0700 Subject: Update to gradle --- app/src/main/res/layout/abstract_activity.xml | 21 +++ .../main/res/layout/abstract_fragment_activity.xml | 84 +++++++++++ .../res/layout/abstract_fragment_container.xml | 6 + app/src/main/res/layout/abstract_list_fragment.xml | 27 ++++ app/src/main/res/layout/actionbar_spinner.xml | 13 ++ app/src/main/res/layout/album_cell_item.xml | 89 ++++++++++++ app/src/main/res/layout/album_list_item.xml | 74 ++++++++++ app/src/main/res/layout/appwidget4x1.xml | 107 ++++++++++++++ app/src/main/res/layout/appwidget4x2.xml | 130 +++++++++++++++++ app/src/main/res/layout/appwidget4x3.xml | 113 +++++++++++++++ app/src/main/res/layout/appwidget4x4.xml | 115 +++++++++++++++ app/src/main/res/layout/basic_count_item.xml | 35 +++++ app/src/main/res/layout/basic_list_item.xml | 37 +++++ app/src/main/res/layout/change_email.xml | 28 ++++ app/src/main/res/layout/change_password.xml | 28 ++++ app/src/main/res/layout/chat.xml | 53 +++++++ app/src/main/res/layout/chat_item.xml | 61 ++++++++ app/src/main/res/layout/chat_item_reverse.xml | 61 ++++++++ app/src/main/res/layout/complex_list_item.xml | 49 +++++++ app/src/main/res/layout/confirm_password.xml | 28 ++++ app/src/main/res/layout/create_bookmark.xml | 26 ++++ app/src/main/res/layout/create_podcast.xml | 27 ++++ app/src/main/res/layout/create_user.xml | 77 ++++++++++ app/src/main/res/layout/download_activity.xml | 4 + app/src/main/res/layout/download_media_buttons.xml | 63 +++++++++ app/src/main/res/layout/download_playlist.xml | 31 ++++ app/src/main/res/layout/download_slider.xml | 43 ++++++ app/src/main/res/layout/drawer_list_item.xml | 26 ++++ app/src/main/res/layout/edit_play_action.xml | 119 ++++++++++++++++ app/src/main/res/layout/equalizer.xml | 51 +++++++ app/src/main/res/layout/equalizer_bar.xml | 36 +++++ app/src/main/res/layout/genre_list_item.xml | 42 ++++++ app/src/main/res/layout/grid_view.xml | 14 ++ app/src/main/res/layout/home.xml | 23 +++ app/src/main/res/layout/jukebox_volume.xml | 46 ++++++ app/src/main/res/layout/lyrics.xml | 55 ++++++++ app/src/main/res/layout/main_buttons.xml | 157 +++++++++++++++++++++ app/src/main/res/layout/notification.xml | 83 +++++++++++ app/src/main/res/layout/notification_expanded.xml | 123 ++++++++++++++++ app/src/main/res/layout/preferences.xml | 10 ++ app/src/main/res/layout/progress.xml | 20 +++ app/src/main/res/layout/rating.xml | 15 ++ app/src/main/res/layout/save_playlist.xml | 26 ++++ app/src/main/res/layout/search_buttons.xml | 73 ++++++++++ app/src/main/res/layout/seekbar_preference.xml | 18 +++ app/src/main/res/layout/select_album.xml | 28 ++++ app/src/main/res/layout/select_album_header.xml | 153 ++++++++++++++++++++ app/src/main/res/layout/select_artist_header.xml | 43 ++++++ app/src/main/res/layout/shuffle_dialog.xml | 80 +++++++++++ app/src/main/res/layout/song_list_item.xml | 126 +++++++++++++++++ app/src/main/res/layout/start_timer.xml | 21 +++ app/src/main/res/layout/static_drawer_activity.xml | 23 +++ app/src/main/res/layout/sync_dialog.xml | 12 ++ app/src/main/res/layout/tab_progress.xml | 31 ++++ app/src/main/res/layout/unscrollable_grid_view.xml | 11 ++ app/src/main/res/layout/update_playlist.xml | 70 +++++++++ app/src/main/res/layout/update_share.xml | 69 +++++++++ app/src/main/res/layout/user_header.xml | 57 ++++++++ app/src/main/res/layout/user_list_item.xml | 44 ++++++ 59 files changed, 3135 insertions(+) create mode 100644 app/src/main/res/layout/abstract_activity.xml create mode 100644 app/src/main/res/layout/abstract_fragment_activity.xml create mode 100644 app/src/main/res/layout/abstract_fragment_container.xml create mode 100644 app/src/main/res/layout/abstract_list_fragment.xml create mode 100644 app/src/main/res/layout/actionbar_spinner.xml create mode 100644 app/src/main/res/layout/album_cell_item.xml create mode 100644 app/src/main/res/layout/album_list_item.xml create mode 100644 app/src/main/res/layout/appwidget4x1.xml create mode 100644 app/src/main/res/layout/appwidget4x2.xml create mode 100644 app/src/main/res/layout/appwidget4x3.xml create mode 100644 app/src/main/res/layout/appwidget4x4.xml create mode 100644 app/src/main/res/layout/basic_count_item.xml create mode 100644 app/src/main/res/layout/basic_list_item.xml create mode 100644 app/src/main/res/layout/change_email.xml create mode 100644 app/src/main/res/layout/change_password.xml create mode 100644 app/src/main/res/layout/chat.xml create mode 100644 app/src/main/res/layout/chat_item.xml create mode 100644 app/src/main/res/layout/chat_item_reverse.xml create mode 100644 app/src/main/res/layout/complex_list_item.xml create mode 100644 app/src/main/res/layout/confirm_password.xml create mode 100644 app/src/main/res/layout/create_bookmark.xml create mode 100644 app/src/main/res/layout/create_podcast.xml create mode 100644 app/src/main/res/layout/create_user.xml create mode 100644 app/src/main/res/layout/download_activity.xml create mode 100644 app/src/main/res/layout/download_media_buttons.xml create mode 100644 app/src/main/res/layout/download_playlist.xml create mode 100644 app/src/main/res/layout/download_slider.xml create mode 100644 app/src/main/res/layout/drawer_list_item.xml create mode 100644 app/src/main/res/layout/edit_play_action.xml create mode 100644 app/src/main/res/layout/equalizer.xml create mode 100644 app/src/main/res/layout/equalizer_bar.xml create mode 100644 app/src/main/res/layout/genre_list_item.xml create mode 100644 app/src/main/res/layout/grid_view.xml create mode 100644 app/src/main/res/layout/home.xml create mode 100644 app/src/main/res/layout/jukebox_volume.xml create mode 100644 app/src/main/res/layout/lyrics.xml create mode 100644 app/src/main/res/layout/main_buttons.xml create mode 100644 app/src/main/res/layout/notification.xml create mode 100644 app/src/main/res/layout/notification_expanded.xml create mode 100644 app/src/main/res/layout/preferences.xml create mode 100644 app/src/main/res/layout/progress.xml create mode 100644 app/src/main/res/layout/rating.xml create mode 100644 app/src/main/res/layout/save_playlist.xml create mode 100644 app/src/main/res/layout/search_buttons.xml create mode 100644 app/src/main/res/layout/seekbar_preference.xml create mode 100644 app/src/main/res/layout/select_album.xml create mode 100644 app/src/main/res/layout/select_album_header.xml create mode 100644 app/src/main/res/layout/select_artist_header.xml create mode 100644 app/src/main/res/layout/shuffle_dialog.xml create mode 100644 app/src/main/res/layout/song_list_item.xml create mode 100644 app/src/main/res/layout/start_timer.xml create mode 100644 app/src/main/res/layout/static_drawer_activity.xml create mode 100644 app/src/main/res/layout/sync_dialog.xml create mode 100644 app/src/main/res/layout/tab_progress.xml create mode 100644 app/src/main/res/layout/unscrollable_grid_view.xml create mode 100644 app/src/main/res/layout/update_playlist.xml create mode 100644 app/src/main/res/layout/update_share.xml create mode 100644 app/src/main/res/layout/user_header.xml create mode 100644 app/src/main/res/layout/user_list_item.xml (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/abstract_activity.xml b/app/src/main/res/layout/abstract_activity.xml new file mode 100644 index 00000000..be65e437 --- /dev/null +++ b/app/src/main/res/layout/abstract_activity.xml @@ -0,0 +1,21 @@ + + + + + + + diff --git a/app/src/main/res/layout/abstract_fragment_activity.xml b/app/src/main/res/layout/abstract_fragment_activity.xml new file mode 100644 index 00000000..d9c99f2f --- /dev/null +++ b/app/src/main/res/layout/abstract_fragment_activity.xml @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/abstract_fragment_container.xml b/app/src/main/res/layout/abstract_fragment_container.xml new file mode 100644 index 00000000..61e17d1d --- /dev/null +++ b/app/src/main/res/layout/abstract_fragment_container.xml @@ -0,0 +1,6 @@ + + \ No newline at end of file diff --git a/app/src/main/res/layout/abstract_list_fragment.xml b/app/src/main/res/layout/abstract_list_fragment.xml new file mode 100644 index 00000000..618a7341 --- /dev/null +++ b/app/src/main/res/layout/abstract_list_fragment.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/actionbar_spinner.xml b/app/src/main/res/layout/actionbar_spinner.xml new file mode 100644 index 00000000..22055901 --- /dev/null +++ b/app/src/main/res/layout/actionbar_spinner.xml @@ -0,0 +1,13 @@ + + + + diff --git a/app/src/main/res/layout/album_cell_item.xml b/app/src/main/res/layout/album_cell_item.xml new file mode 100644 index 00000000..3f708e63 --- /dev/null +++ b/app/src/main/res/layout/album_cell_item.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/album_list_item.xml b/app/src/main/res/layout/album_list_item.xml new file mode 100644 index 00000000..0ee92edd --- /dev/null +++ b/app/src/main/res/layout/album_list_item.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/layout/appwidget4x1.xml b/app/src/main/res/layout/appwidget4x1.xml new file mode 100644 index 00000000..8f52c872 --- /dev/null +++ b/app/src/main/res/layout/appwidget4x1.xml @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/appwidget4x2.xml b/app/src/main/res/layout/appwidget4x2.xml new file mode 100644 index 00000000..5763fb01 --- /dev/null +++ b/app/src/main/res/layout/appwidget4x2.xml @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + " + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/appwidget4x3.xml b/app/src/main/res/layout/appwidget4x3.xml new file mode 100644 index 00000000..539b9f01 --- /dev/null +++ b/app/src/main/res/layout/appwidget4x3.xml @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/appwidget4x4.xml b/app/src/main/res/layout/appwidget4x4.xml new file mode 100644 index 00000000..1f2db9e1 --- /dev/null +++ b/app/src/main/res/layout/appwidget4x4.xml @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/basic_count_item.xml b/app/src/main/res/layout/basic_count_item.xml new file mode 100644 index 00000000..08d276db --- /dev/null +++ b/app/src/main/res/layout/basic_count_item.xml @@ -0,0 +1,35 @@ + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/basic_list_item.xml b/app/src/main/res/layout/basic_list_item.xml new file mode 100644 index 00000000..2338f7e0 --- /dev/null +++ b/app/src/main/res/layout/basic_list_item.xml @@ -0,0 +1,37 @@ + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/change_email.xml b/app/src/main/res/layout/change_email.xml new file mode 100644 index 00000000..18ffc765 --- /dev/null +++ b/app/src/main/res/layout/change_email.xml @@ -0,0 +1,28 @@ + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/change_password.xml b/app/src/main/res/layout/change_password.xml new file mode 100644 index 00000000..1a382a6b --- /dev/null +++ b/app/src/main/res/layout/change_password.xml @@ -0,0 +1,28 @@ + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/chat.xml b/app/src/main/res/layout/chat.xml new file mode 100644 index 00000000..89ad77ac --- /dev/null +++ b/app/src/main/res/layout/chat.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/chat_item.xml b/app/src/main/res/layout/chat_item.xml new file mode 100644 index 00000000..f31f7988 --- /dev/null +++ b/app/src/main/res/layout/chat_item.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/chat_item_reverse.xml b/app/src/main/res/layout/chat_item_reverse.xml new file mode 100644 index 00000000..b8102193 --- /dev/null +++ b/app/src/main/res/layout/chat_item_reverse.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/complex_list_item.xml b/app/src/main/res/layout/complex_list_item.xml new file mode 100644 index 00000000..67851eca --- /dev/null +++ b/app/src/main/res/layout/complex_list_item.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/confirm_password.xml b/app/src/main/res/layout/confirm_password.xml new file mode 100644 index 00000000..27ee04ea --- /dev/null +++ b/app/src/main/res/layout/confirm_password.xml @@ -0,0 +1,28 @@ + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/create_bookmark.xml b/app/src/main/res/layout/create_bookmark.xml new file mode 100644 index 00000000..f72b39d8 --- /dev/null +++ b/app/src/main/res/layout/create_bookmark.xml @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/app/src/main/res/layout/create_podcast.xml b/app/src/main/res/layout/create_podcast.xml new file mode 100644 index 00000000..5a2ec970 --- /dev/null +++ b/app/src/main/res/layout/create_podcast.xml @@ -0,0 +1,27 @@ + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/create_user.xml b/app/src/main/res/layout/create_user.xml new file mode 100644 index 00000000..eac6e5cb --- /dev/null +++ b/app/src/main/res/layout/create_user.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/download_activity.xml b/app/src/main/res/layout/download_activity.xml new file mode 100644 index 00000000..017e4013 --- /dev/null +++ b/app/src/main/res/layout/download_activity.xml @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/app/src/main/res/layout/download_media_buttons.xml b/app/src/main/res/layout/download_media_buttons.xml new file mode 100644 index 00000000..1affb164 --- /dev/null +++ b/app/src/main/res/layout/download_media_buttons.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/download_playlist.xml b/app/src/main/res/layout/download_playlist.xml new file mode 100644 index 00000000..8a73ef3b --- /dev/null +++ b/app/src/main/res/layout/download_playlist.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/download_slider.xml b/app/src/main/res/layout/download_slider.xml new file mode 100644 index 00000000..bfd4c120 --- /dev/null +++ b/app/src/main/res/layout/download_slider.xml @@ -0,0 +1,43 @@ + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/drawer_list_item.xml b/app/src/main/res/layout/drawer_list_item.xml new file mode 100644 index 00000000..5f17c9e9 --- /dev/null +++ b/app/src/main/res/layout/drawer_list_item.xml @@ -0,0 +1,26 @@ + + + + + + + diff --git a/app/src/main/res/layout/edit_play_action.xml b/app/src/main/res/layout/edit_play_action.xml new file mode 100644 index 00000000..a1115da6 --- /dev/null +++ b/app/src/main/res/layout/edit_play_action.xml @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +