blob: 8c8fbdc3c3118032901a858fb38ef2412ec35e30 [file] [log] [blame]
/*
* Copyright (C) 2016 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.documentsui.dirlist;
import android.content.Context;
import android.database.Cursor;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import com.android.documentsui.R;
/**
* RecyclerView.ViewHolder class that displays at the top of the directory list when there
* are more information from the Provider.
* Used by {@link DirectoryAddonsAdapter}.
*/
final class HeaderMessageDocumentHolder extends MessageHolder {
private Message mMessage;
private ImageView mIcon;
private TextView mTextView;
public HeaderMessageDocumentHolder(Context context, ViewGroup parent, Runnable callback) {
super(context, parent, R.layout.item_doc_header_message);
mIcon = (ImageView) itemView.findViewById(R.id.message_icon);
mTextView = (TextView) itemView.findViewById(R.id.message_textview);
Button dismiss = (Button) itemView.findViewById(R.id.button_dismiss);
dismiss.setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View v) {
callback.run();
}
});
}
public void bind(Message message) {
mMessage = message;
bind(null, null);
}
@Override
public void bind(Cursor cursor, String modelId) {
mTextView.setText(mMessage.getMessageString());
mIcon.setImageResource(mMessage.getIconId());
}
}