summaryrefslogtreecommitdiff
path: root/DirectRenderingCluster/src/android/car/cluster/MusicFragment.java
blob: ac17371cb6370de45b13b9cf781993d847650d3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * Copyright (C) 2019 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package android.car.cluster;

import static android.car.media.CarMediaManager.MEDIA_SOURCE_MODE_PLAYBACK;

import android.os.Bundle;
import android.util.Size;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.SeekBar;
import android.widget.TextView;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentActivity;
import androidx.lifecycle.ViewModelProviders;

import com.android.car.media.common.MetadataController;
import com.android.car.media.common.playback.PlaybackViewModel;
import com.android.car.media.common.source.MediaSourceViewModel;

import com.bumptech.glide.request.target.Target;

/**
 * Displays information on the current media item selected.
 */
public class MusicFragment extends Fragment {
    private static final String TAG = "MusicFragment";

    public MusicFragment() {
        // Required empty public constructor
    }

    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
            Bundle savedInstanceState) {
        FragmentActivity activity = requireActivity();
        PlaybackViewModel playbackViewModel =
                PlaybackViewModel.get(activity.getApplication(), MEDIA_SOURCE_MODE_PLAYBACK);
        MediaSourceViewModel mMediaSourceViewModel = MediaSourceViewModel.get(
                activity.getApplication(), MEDIA_SOURCE_MODE_PLAYBACK);

        MusicFragmentViewModel innerViewModel = ViewModelProviders.of(activity).get(
                MusicFragmentViewModel.class);
        innerViewModel.init(mMediaSourceViewModel);

        View view = inflater.inflate(R.layout.fragment_music, container, false);

        TextView appName = view.findViewById(R.id.app_name);
        innerViewModel.getAppName().observe(getViewLifecycleOwner(), appName::setText);

        ImageView appIcon = view.findViewById(R.id.app_icon);
        innerViewModel.getAppIcon().observe(getViewLifecycleOwner(), appIcon::setImageBitmap);

        TextView title = view.findViewById(R.id.title);
        TextView subtitle = view.findViewById(R.id.subtitle);
        SeekBar seekBar = view.findViewById(R.id.seek_bar);
        TextView time = view.findViewById(R.id.time);
        TextView timeSeparator = view.findViewById(R.id.time_separator);
        TextView trackLength = view.findViewById(R.id.track_length);

        ImageView albumIcon = view.findViewById(R.id.album_art);

        int artSize = view.getContext().getResources().getDimensionPixelSize(
                R.dimen.playback_album_art_size_normal);

        new MetadataController(
            getViewLifecycleOwner(),
            playbackViewModel,
            null,
            title,
            subtitle,
            null,
            null,
            time,
            timeSeparator,
            trackLength,
            seekBar,
            albumIcon,
            null,
            new Size(artSize, artSize),
            null
        );

        return view;
    }
}