mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-04 16:45:09 -05:00
Make all fields of AttachmentView private
This commit is contained in:
parent
0ced8746af
commit
4a6c52947d
@ -46,16 +46,16 @@ import com.fsck.k9.provider.AttachmentProvider;
|
||||
|
||||
public class AttachmentView extends FrameLayout implements OnClickListener, OnLongClickListener {
|
||||
private Context mContext;
|
||||
public Button viewButton;
|
||||
public Button downloadButton;
|
||||
public LocalAttachmentBodyPart part;
|
||||
private Button viewButton;
|
||||
private Button downloadButton;
|
||||
private LocalAttachmentBodyPart part;
|
||||
private Message mMessage;
|
||||
private Account mAccount;
|
||||
private MessagingController mController;
|
||||
private MessagingListener mListener;
|
||||
public String name;
|
||||
public String contentType;
|
||||
public long size;
|
||||
private String name;
|
||||
private String contentType;
|
||||
private long size;
|
||||
|
||||
private AttachmentFileDownloadCallback callback;
|
||||
|
||||
@ -89,6 +89,11 @@ public class AttachmentView extends FrameLayout implements OnClickListener, OnLo
|
||||
public void showFileBrowser(AttachmentView caller);
|
||||
}
|
||||
|
||||
public void setButtonsEnabled(boolean enabled) {
|
||||
viewButton.setEnabled(enabled);
|
||||
downloadButton.setEnabled(enabled);
|
||||
}
|
||||
|
||||
/**
|
||||
* Populates this view with information about the attachment.
|
||||
* <p>
|
||||
|
@ -607,8 +607,7 @@ public class SingleMessageView extends LinearLayout implements OnClickListener,
|
||||
public void setAttachmentsEnabled(boolean enabled) {
|
||||
for (int i = 0, count = mAttachments.getChildCount(); i < count; i++) {
|
||||
AttachmentView attachment = (AttachmentView) mAttachments.getChildAt(i);
|
||||
attachment.viewButton.setEnabled(enabled);
|
||||
attachment.downloadButton.setEnabled(enabled);
|
||||
attachment.setButtonsEnabled(enabled);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user