Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
91 views
in Technique[技术] by (71.8m points)

java - how to display files from within folders?

Is it possible to view the Bitmap of the music images that are inside the folders?

public void onBindViewHolder(@NonNull MyHolder holder,  final int position) {
    int index = folderNames.get(position).lastIndexOf("/");
    String folder = folderNames.get(position).substring(index + 1);
    holder.folder.setText(folder);
    Bitmap image = getAlbum(artFolder.get(position).getPatch());
question from:https://stackoverflow.com/questions/65829339/how-to-display-files-from-within-folders

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...