| /* |
| * Copyright (C) 2008 Esmertec AG. |
| * Copyright (C) 2008 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.mms.ui; |
| |
| import java.util.Map; |
| |
| import android.content.Context; |
| import android.graphics.Bitmap; |
| import android.graphics.BitmapFactory; |
| import android.net.Uri; |
| import android.util.AttributeSet; |
| import android.util.Log; |
| import android.view.View; |
| import android.widget.ImageView; |
| import android.widget.LinearLayout; |
| |
| import com.android.mms.R; |
| |
| /** |
| * This class provides an embedded editor/viewer of picture attachment. |
| */ |
| public class ImageAttachmentView extends LinearLayout implements SlideViewInterface { |
| private ImageView mImageView; |
| private static final String TAG = "ImageAttachmentView"; |
| |
| public ImageAttachmentView(Context context) { |
| super(context); |
| } |
| |
| public ImageAttachmentView(Context context, AttributeSet attrs) { |
| super(context, attrs); |
| } |
| |
| @Override |
| protected void onFinishInflate() { |
| mImageView = (ImageView) findViewById(R.id.image_content); |
| } |
| |
| public void startAudio() { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void startVideo() { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void setAudio(Uri audio, String name, Map<String, ?> extras) { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void setImage(String name, Bitmap bitmap) { |
| try { |
| if (null == bitmap) { |
| bitmap = BitmapFactory.decodeResource(getResources(), |
| R.drawable.ic_missing_thumbnail_picture); |
| } |
| mImageView.setImageBitmap(bitmap); |
| } catch (java.lang.OutOfMemoryError e) { |
| Log.e(TAG, "setImage: out of memory: ", e); |
| } |
| } |
| |
| public void setImageRegionFit(String fit) { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void setImageVisibility(boolean visible) { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void setText(String name, String text) { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void setTextVisibility(boolean visible) { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void setVideo(String name, Uri video) { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void setVideoThumbnail(String name, Bitmap bitmap) { |
| } |
| |
| public void setVideoVisibility(boolean visible) { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void stopAudio() { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void stopVideo() { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void reset() { |
| mImageView.setImageDrawable(null); |
| } |
| |
| public void setVisibility(boolean visible) { |
| setVisibility(visible ? View.VISIBLE : View.GONE); |
| } |
| |
| public void pauseAudio() { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void pauseVideo() { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void seekAudio(int seekTo) { |
| // TODO Auto-generated method stub |
| |
| } |
| |
| public void seekVideo(int seekTo) { |
| // TODO Auto-generated method stub |
| |
| } |
| } |