blob: e9daa462c02292b24df2b91dadfb4e2ce6c9bfd7 [file] [log] [blame]
/*
* Copyright (C) 2022 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 com.android.systemui.clipboardoverlay;
import android.content.Context;
import android.widget.Toast;
import com.android.systemui.R;
import javax.inject.Inject;
/**
* Utility class for showing a simple clipboard toast on copy.
*/
class ClipboardToast extends Toast.Callback {
private final Context mContext;
private Toast mCopiedToast;
@Inject
ClipboardToast(Context context) {
mContext = context;
}
void showCopiedToast() {
if (mCopiedToast != null) {
mCopiedToast.cancel();
}
mCopiedToast = Toast.makeText(mContext,
R.string.clipboard_overlay_text_copied, Toast.LENGTH_SHORT);
mCopiedToast.addCallback(this);
mCopiedToast.show();
}
boolean isShowing() {
return mCopiedToast != null;
}
@Override // Toast.Callback
public void onToastHidden() {
super.onToastHidden();
mCopiedToast = null;
}
}