History log of /packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
5751c241c4a9cb19668788e2ae83ca6e8287375c 31-Mar-2011 Soojung Shin <sj46.shin@samsung.com> Allow the SMS message length to be set via mms_config.xml

Change-Id: I8941fcc9f352805635c638aa2e2bae513b71db8f
Signed-off-by: Soojung Shin <sj46.shin@samsung.com>
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
c4a34a0ccd414e2bba937e8abd105a0383afff35 09-Oct-2010 Tom Taylor <tomtaylor@google.com> Call dialog.dismiss()

In many of the click handlers, we neglected to dismiss the dialog.
Bug 3072307

Change-Id: Ie461492394c9f29ce2a7bb6e7f00a93068ea2bf8
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
f7e8281a223af6228e6399055a6197a1edd9bc3a 09-Mar-2010 Tom Taylor <tomtaylor@google.com> Remove mms-common

Get rid of the mms-common library and move the mms files back into the
framework where they originally came from.

Change-Id: I8ce2b0a2a3cfc6b7da13ce0e791173c09dd8f0f5
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
3643ac18361ebb2c6194569ac7ee2f0927155f07 12-Feb-2010 Wei Huang <weih@google.com> resolved conflicts for merge of 5b783617 to master

Change-Id: I77c46fd688d67accb60194af334c8404222c6e5c
4ee7aa9aec45dd564c0e82928fa5a8378e856dcf 11-Feb-2010 Wei Huang <weih@google.com> bug #2434183: guard against ArrayIndexOutOfBoundEx when there is an empty slide show.

Change-Id: Iad96489e787d3e6cb9162ced4adbf164566bf421
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
fd644551e8506266aad2b76463b51b44154ed62f 29-Jan-2010 Tom Taylor <tomtaylor@google.com> Update refs now that MMS is removed

Move MMS to mms-common library. Update imports.

Change-Id: I28fa24a68c27977eba58cb62f2667596d3abe2c4
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
3451cbcbfb5a26dba9b6713e07ba9e279f90c7de 23-Dec-2009 Tom Taylor <tomtaylor@google.com> resolved conflicts for merge of 64c734ff to master
7bf703913dfb4c253b645279d69b7c6d25634880 18-Dec-2009 Tom Taylor <tomtaylor@google.com> Fix a monkey crasher

The monkey can delete a slide and still popup a menu. Protect with
isFinishing.

Change-Id: Idf853df23c38095203d2d50de9b52be1e96abfd7
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
b79df272305c0c27954b7bd44de0e5df97e3e639 18-Dec-2009 Tom Taylor <tomtaylor@google.com> Fix IndexOutOfBoundsException bug

The monkey discovered a bug where alternately typing into a slide and
immediately tapping the "Remove slide" button causes a crash as the
code responds to "afterTextChanged". Now if the activity is in the finishing
state, we don't bother dealing with the changed text.
Fixes bug 2336463.

Change-Id: Ic21e3daf8dd8cf936f0f0edb1e11763fabd1a0f4
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
6be18bedb5b87dbbcdb54f37d5a0945bd0f71377 17-Dec-2009 Tom Taylor <tomtaylor@google.com> Unbundling work

This is the first step in unbundling the Mms app. Some of the changes include:
- moving some of the Mms code from the framework into the app itself.
- same with emoticons
- remove dependency on internal drawables and add local copy to mms
- some dependencies on various internal classes now moved to android-common library
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
47471dad88703d5befcbf65abd9e0cf28872bcb3 07-Oct-2009 Tom Taylor <tomtaylor@google.com> Don't allow attach audio

If MmsConfig doesn't allow attaching a ringtone to a Mms message,
hide the menu item. Fixes bug 2171112.

Change-Id: I863c5a3b5761dc5588c48c77aef76f9bb984287b
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
d9e91d95f4c8ed00d881e41b6af9783bec61cfc8 10-Sep-2009 Satish Roddom <satishroddom@motorola.com> Force-close when adding picture to a slide having video

Issue: Add video to a slide. There is a button 'Add picture'. Click it, and select a picture.
Messaging force closes.

Rootcause: It is obvious that a slide cannot have a video as well as picture. When doing so,
the function internalAdd() gets executed and throws IllegalStateException, which is not caught
anywhere.

Fix: When a slide has a video already, and user clicks 'Add picture', show him toast saying
'video and picture cannot added to one slide' and return.

Bug: 2111946
Change-Id: Iad57c2f664569bbf20db00c477d1e8f0b22664f9
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
f79b803adc0cee3778cf6aac52d203896cde5d95 04-Sep-2009 Christian Gustafsson <christian.gustafsson@motorola.com> Resize images when they exceed the MMS payload size

Code was in place to resize images when they exceeded the maximum
MMS dimensions. But the case where the byte size of an image was exceeding the
MMS payload just resulted in an error message to the user. This is a problem
with high resolution images taken by the devices camera. These images fit the
MMS dimensions but routinely exceed the MMS byte size.

Extra fix for GIF images. The GIF decoder does not honor the scaled decode
parameter. Code now calls the Bitmap scale function when this happens.

1. Change the getResizedImageData function in UriImage.java to account for
byte size as well. If the resulting jpg exceeds the byte size attempt to
reduce the quality on the compressor first. But not below 50%. Should
this step not work then rescale the image to a lower resolution and try
again. Do this up to 4 times.
2. Change resizeImageAsync in MessageUtil.java to pass a maximum bytes size.
Account for a MMS overhead of 5000 bytes in this case. So the maximum
image size will be msConfig.getMaxMessageSize() ? 5000.
3. Update 3 places to call resizeImageAsync instead of showing an error
message to the user.

Change-Id: I33427fe79c42677e24acf0390ae834d58205c8f1
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
6bf6dd8f9327299fd4a829fb7844568f96dd5278 20-Aug-2009 Tom Taylor <tomtaylor@google.com> Fix slideshow layout

The actions for the layout menu actions were reversed.
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
edd39351defc331fc268a6ed88338f64fe6f17cf 12-Aug-2009 Tom Taylor <tomtaylor@google.com> Support multiple send intent

Allow a user to send multiple pictures/videos in an mms message. Each
gets added as its own slide.
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
b9bcfdd226bbb6f5b265f925343375192963d58a 11-Apr-2009 Ficus Kirkpatrick <ficus@android.com> Move in-progress message state out of ComposeMessageActivity and into its own class.
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
4522cafe21816d43626b8ac42e1c5d3667212a97 25-Mar-2009 Ye Wen <> Automated import from //branches/master/...@142740,142740
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
2f56791329cefc49ce79663b8d3aff50594cc1f3 05-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@136594
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
72735c62aba8fd2a9420a0f9f83d22543e3c164f 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
892f2c5bf965b1431ae107b602444a93f4aad4a3 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
44cea74dc55e2459262d0d765ef4a69267dd09b0 13-Feb-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake/...@131421
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
1a4b3a26659d034b9df52fc6a0e184cffe7451ae 20-Jan-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake/...@127101
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
0f236f55349f070ac94e12cca963847173393da8 18-Dec-2008 The Android Open Source Project <initial-contribution@android.com> Code drop from //branches/cupcake/...@124589
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java
8eed706474910ccb978acda03e85d3261037da6e 21-Oct-2008 The Android Open Source Project <initial-contribution@android.com> Initial Contribution
/packages/apps/Mms/src/com/android/mms/ui/SlideEditorActivity.java