blob: 89216e17f5fb5746568c61d8192a74c0854ef371 [file] [log] [blame]
/**
* Copyright (c) 2007, Google Inc.
*
* 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.mail.compose;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ImageButton;
import android.widget.LinearLayout;
import android.widget.TextView;
import com.android.mail.providers.Attachment;
import com.android.mail.R;
import com.android.mail.utils.AttachmentUtils;
import com.android.mail.utils.LogTag;
import com.android.mail.utils.LogUtils;
import org.json.JSONException;
/**
* This view is used in the ComposeActivity to display an attachment along with its name/size
* and a Remove button.
*/
class AttachmentComposeView extends LinearLayout implements AttachmentDeletionInterface {
private final Attachment mAttachment;
private final static String LOG_TAG = LogTag.getLogTag();
public AttachmentComposeView(Context c, Attachment attachment) {
super(c);
mAttachment = attachment;
if (LogUtils.isLoggable(LOG_TAG, LogUtils.DEBUG)) {
String attachStr = null;
try {
attachStr = attachment.toJSON().toString(2);
} catch (JSONException e) {
attachStr = attachment.toString();
}
LogUtils.d(LOG_TAG, "attachment view: %s", attachStr);
}
LayoutInflater factory = LayoutInflater.from(getContext());
factory.inflate(R.layout.attachment, this);
populateAttachmentData(c);
}
@Override
public void addDeleteListener(OnClickListener clickListener) {
final ImageButton deleteButton = (ImageButton) findViewById(R.id.remove_attachment);
deleteButton.setOnClickListener(clickListener);
deleteButton.setContentDescription(getResources().getString(R.string.remove_attachment_desc,
mAttachment.getName()));
}
private void populateAttachmentData(Context context) {
((TextView) findViewById(R.id.attachment_name)).setText(mAttachment.getName());
if (mAttachment.size > 0) {
((TextView) findViewById(R.id.attachment_size)).
setText(AttachmentUtils.convertToHumanReadableSize(context, mAttachment.size));
} else {
((TextView) findViewById(R.id.attachment_size)).setVisibility(View.GONE);
}
}
}