1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- *
- * Nextcloud Android client application
- *
- * @author Tobias Kaminsky
- * Copyright (C) 2020 Tobias Kaminsky
- * Copyright (C) 2020 Nextcloud GmbH
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.ui.adapter;
- import android.content.Context;
- import android.graphics.PorterDuff;
- import android.view.View;
- import com.owncloud.android.R;
- import com.owncloud.android.databinding.FileDetailsShareInternalShareLinkBinding;
- import com.owncloud.android.lib.resources.shares.OCShare;
- import androidx.annotation.NonNull;
- import androidx.core.content.res.ResourcesCompat;
- import androidx.recyclerview.widget.RecyclerView;
- class InternalShareViewHolder extends RecyclerView.ViewHolder {
- private FileDetailsShareInternalShareLinkBinding binding;
- private Context context;
- public InternalShareViewHolder(@NonNull View itemView) {
- super(itemView);
- }
- public InternalShareViewHolder(FileDetailsShareInternalShareLinkBinding binding, Context context) {
- this(binding.getRoot());
- this.binding = binding;
- this.context = context;
- }
- public void bind(OCShare share, ShareeListAdapterListener listener) {
- binding.copyInternalLinkIcon
- .getBackground()
- .setColorFilter(ResourcesCompat.getColor(context.getResources(),
- R.color.grey_db,
- null),
- PorterDuff.Mode.SRC_IN);
- binding.copyInternalLinkIcon
- .getDrawable()
- .mutate()
- .setColorFilter(ResourcesCompat.getColor(context.getResources(),
- R.color.black,
- null),
- PorterDuff.Mode.SRC_IN);
- if (share.isFolder()) {
- binding.shareInternalLinkText.setText(context.getString(R.string.share_internal_link_to_folder_text));
- } else {
- binding.shareInternalLinkText.setText(context.getString(R.string.share_internal_link_to_file_text));
- }
- binding.copyInternalContainer.setOnClickListener(l -> listener.copyInternalLink());
- }
- }
|