Make HomeFragment's AppBarLayout lift when the data scrolls. This was something I wanted to do initially, but kept running into issues with. Turns out the addition of my custom AppBarLayout made this pretty trivial all things considered. The entire app now follows this idiom.
8 lines
No EOL
344 B
XML
8 lines
No EOL
344 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!-- This is for HomeFragment's AppBarLayout. Explanations for these can be found there. -->
|
|
<item name="home_song_list" type="id" />
|
|
<item name="home_album_list" type="id" />
|
|
<item name="home_artist_list" type="id" />
|
|
<item name="home_genre_list" type="id" />
|
|
</resources> |