PlayerAndroid/app/src/main/java/code/name/monkey/retromusic/adapter/base/MediaEntryViewHolder.java

129 lines
3.6 KiB
Java
Raw Normal View History

2019-09-17 19:36:13 +00:00
/*
* Copyright (c) 2019 Hemanth Savarala.
*
* Licensed under the GNU General Public License v3
*
* This is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by
* the Free Software Foundation either version 3 of the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*/
package code.name.monkey.retromusic.adapter.base;
2020-01-17 17:19:06 +00:00
import android.graphics.Color;
2019-09-17 19:36:13 +00:00
import android.view.View;
import android.widget.FrameLayout;
2019-09-17 19:36:13 +00:00
import android.widget.ImageView;
import android.widget.TextView;
2020-12-05 06:03:31 +00:00
2019-09-17 19:36:13 +00:00
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.widget.AppCompatImageView;
2020-12-05 06:03:31 +00:00
2020-01-02 03:53:43 +00:00
import com.google.android.material.card.MaterialCardView;
import com.h6ah4i.android.widget.advrecyclerview.utils.AbstractDraggableSwipeableItemViewHolder;
2019-09-17 19:36:13 +00:00
import code.name.monkey.retromusic.R;
2020-01-02 03:53:43 +00:00
public class MediaEntryViewHolder extends AbstractDraggableSwipeableItemViewHolder
2020-12-05 06:03:31 +00:00
implements View.OnLongClickListener, View.OnClickListener {
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
@Nullable
public View dragView;
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
@Nullable
public View dummyContainer;
2020-12-05 06:03:31 +00:00
@Nullable
public ImageView image;
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
@Nullable
public MaterialCardView imageContainerCard;
2019-09-17 19:36:13 +00:00
@Nullable
public FrameLayout imageContainer;
2020-12-05 06:03:31 +00:00
@Nullable
public TextView imageText;
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
@Nullable
public MaterialCardView imageTextContainer;
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
@Nullable
public View mask;
2020-01-02 03:53:43 +00:00
2020-12-05 06:03:31 +00:00
@Nullable
public AppCompatImageView menu;
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
@Nullable
public View paletteColorContainer;
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
@Nullable
public TextView text;
2020-12-05 06:03:31 +00:00
@Nullable
public TextView text2;
2020-01-02 03:53:43 +00:00
2020-12-05 06:03:31 +00:00
@Nullable
public TextView time;
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
@Nullable
public TextView title;
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
public MediaEntryViewHolder(@NonNull View itemView) {
super(itemView);
title = itemView.findViewById(R.id.title);
text = itemView.findViewById(R.id.text);
text2 = itemView.findViewById(R.id.text2);
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
image = itemView.findViewById(R.id.image);
time = itemView.findViewById(R.id.time);
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
imageText = itemView.findViewById(R.id.imageText);
imageTextContainer = itemView.findViewById(R.id.imageTextContainer);
imageContainerCard = itemView.findViewById(R.id.imageContainerCard);
imageContainer = itemView.findViewById(R.id.imageContainer);
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
menu = itemView.findViewById(R.id.menu);
dragView = itemView.findViewById(R.id.drag_view);
paletteColorContainer = itemView.findViewById(R.id.paletteColorContainer);
mask = itemView.findViewById(R.id.mask);
dummyContainer = itemView.findViewById(R.id.dummy_view);
2019-09-17 19:36:13 +00:00
2020-12-05 06:03:31 +00:00
if (imageContainerCard != null) {
imageContainerCard.setCardBackgroundColor(Color.TRANSPARENT);
}
itemView.setOnClickListener(this);
itemView.setOnLongClickListener(this);
2019-12-08 16:38:51 +00:00
}
2020-12-05 06:03:31 +00:00
@Nullable
@Override
public View getSwipeableContainerView() {
return null;
}
@Override
public void onClick(View v) {
}
@Override
public boolean onLongClick(View v) {
return false;
}
public void setImageTransitionName(@NonNull String transitionName) {
itemView.setTransitionName(transitionName);
2020-10-06 08:46:04 +00:00
/* if (imageContainerCard != null) {
imageContainerCard.setTransitionName(transitionName);
2019-09-17 19:36:13 +00:00
}
2020-10-06 08:46:04 +00:00
if (image != null) {
image.setTransitionName(transitionName);
}*/
2020-12-05 06:03:31 +00:00
}
2019-09-17 19:36:13 +00:00
}