You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
566 B
20 lines
566 B
@startuml
|
|
class com.example.music.AlbumAdapter {
|
|
- Context mContext
|
|
- ArrayList<MusicFiles> albumFiles
|
|
~ View view
|
|
+ MyHolder onCreateViewHolder(ViewGroup,int)
|
|
+ void onBindViewHolder(MyHolder,int)
|
|
+ int getItemCount()
|
|
- byte[] getAlbumArt(String)
|
|
}
|
|
class com.example.music.AlbumAdapter$MyHolder {
|
|
~ ImageView album_image
|
|
~ TextView album_name
|
|
}
|
|
|
|
|
|
com.example.music.Adapter <|-- com.example.music.AlbumAdapter
|
|
com.example.music.AlbumAdapter +.. com.example.music.AlbumAdapter$MyHolder
|
|
com.example.music.ViewHolder <|-- com.example.music.AlbumAdapter$MyHolder
|
|
@enduml |