1 00:00:00,220 --> 00:00:03,110 Before we move on, I wanted to point out a cool feature of Android 2 00:00:03,110 --> 00:00:04,880 layouts that I'm using in this app. 3 00:00:04,880 --> 00:00:08,090 If you look at the activitysongplayback.xml file, 4 00:00:08,090 --> 00:00:11,130 you'll notice that I have an interesting looking tag called include. 5 00:00:11,130 --> 00:00:13,430 Although it isn't something that directly relates to styles and 6 00:00:13,430 --> 00:00:17,490 themes, I wanted to share this cool trick as it's used a couple of times in the app. 7 00:00:17,490 --> 00:00:20,750 And it's a great way to isolate layouts that are semantically similar. 8 00:00:20,750 --> 00:00:24,740 To utilize the include tag, you simply have to declare your layout file in 9 00:00:24,740 --> 00:00:28,910 one file, and you use the include tag in another layout that you want to use it in. 10 00:00:28,910 --> 00:00:32,748 Then, specify the layout attribute with the name of the file your layout you'd 11 00:00:32,748 --> 00:00:34,304 like to include was created in. 12 00:00:38,218 --> 00:00:40,887 Now that you've got another cool Android trick under your belt, 13 00:00:40,887 --> 00:00:44,740 I'm going to challenge you to extract another couple of styles for this app. 14 00:00:44,740 --> 00:00:46,240 Try and see if you can create a style for 15 00:00:46,240 --> 00:00:49,070 the song's playback time and the song's duration. 16 00:00:49,070 --> 00:00:51,300 Then, if you want to go above and beyond, 17 00:00:51,300 --> 00:00:55,470 try styling the album artwork with the rounded corners in the playback activity. 18 00:00:55,470 --> 00:00:56,840 Come back when you're ready for my solution.