Samsung Moment : Can I Disable SMS Threading?

Jan 7, 2010

Anyone know how to disable SMS threading on the Moment? I was able to do it via registry tom-foolery on my last phone (Palm Treo Pro), but I don't know where to start on this Android phone. I like having each SMS be its own little thing, not a string of SMS's.

Samsung Moment : Can I disable SMS Threading?


Samsung Moment :: Way To Disable Data?

Aug 14, 2010

Any way of disabling the data on the moment to save battery?

View 4 Replies View Related

Samsung Moment :: Way To Disable Joystick?

Feb 11, 2010

I've had the Moment for about 1 1/2 months. At times, it seems as though the joystick is "stuck" - it moves the cursor all around (sort of like the center mouse on a laptop). Sometimes it will move around the screen, move from one screen to another, move the cursor when typing, etc... It makes the phone unusable. I've looked in a bunch of forums and haven't seen anyone else complain. I normally have to remove the battery and boot it back up and everything starts to work again. I had a zag on it, but removed it thinking it might be the problem (it wasn't). The Sprint store was zero help (it didn't happen while there). Is there a way to disable the joystick? I'm tempted to just take the phone apart and remove it.

View 1 Replies View Related

Samsung Moment :: Disable Default Music App?

Dec 8, 2009

Just downloaded Tunewiki - not for the lyrics/content, but because the interface and widget are really slick.

Problem I'm having is that the default music player app likes to compete with it. When I use Bluetooth (Ford Sync) the music player app likes to start automatically.

Anyone know how to tell it to ignore the music app? I know it can't be deleted.

View 3 Replies View Related

Samsung Moment :: How To Disable Cell Radio

Jan 25, 2010

When I am at school I can barely get a signal. I constantly get notifications for going in and out of service and it's MURDERING my battery! So I was wondering if anyone knows how to completely disable my cellphone usage WITHOUT disabling wifi?

View 10 Replies View Related

Samsung Moment :: Completely Disable Mobile Network

Jun 7, 2010

Does anyone know how to completely disable the mobile network on the Moment? I need to so I can use it for my Battle.net mobile authenticator while I am using my fiance's new Samsung Reclaim for a month (to get the upgrade price on it) and she has my Hero. Basically, anytime I need data on it, I want to use WiFi but if I leave it on it can and will probably mess up calls on the Hero. My Hero has a nice little check box to disable the mobile network, but the Moment doesn't.

View 2 Replies View Related

Samsung Moment : Disable Phone Keypad Vibration

Jun 18, 2010

Is it possible to make the keypad on the phone not vibrate? I have haptic feedback disabled and the only two things that vibrate are the unlock (which I dont mind) and the keypad on the phone. I would really love to turn that off. Does anyone know if this is possible?

View 5 Replies View Related

Samsung Moment : Disable This Charging Notification Feature?

Nov 18, 2009

is there a way to disable this charging notification feature? it wasn't a big deal in the beginning, but since i need to charge my phone constantly to last the entire day, it has become an issue. I know I can turn my notification off or change it to vibration but then I'll miss all my alerts and reminders from other apps. any apps out there can simply turn this feature off?

View 14 Replies View Related

Samsung Moment :: Can Disable Or Remap Voice Control Button?

Feb 6, 2010

But I find myself endlessly annoyed by the placement of the Voice Control button on the side of the phone. This button's placement is absolutely perfect for accidentally pushing it with your thumb or fingers when you're on a call, or when holding the phone in either portrait or landscape mode. I dont use voice control. Even if I did, I'd want it to turn on when I decided to use it. I've searched the Phone Settings; I've searched these forums; I've searched the Android Marketplace. Short of cracking the case and physically removing the button

View 6 Replies View Related

Samsung Moment :: Disable Vibrating Feature Of Soft Keyboard?

Nov 2, 2009

How do you disable the accompanying vibration feature of the soft keyboard? It's kinda loud especially in an office environment or mtg

View 2 Replies View Related

Samsung Moment :: Disable Lock Screen Fade Effect?

May 18, 2010

I updated my moment to the official 2.1 firmware from Sprint yesterday.I've looked in the menus, but can't find a setting for it.Does anyone know a way to disable the fade in/out of the screen when unlocking or putting the device back to sleep?

View 7 Replies View Related

Samsung Moment :: Disable Sound When I Plug My Phone Into Charge?

Feb 13, 2010

How do I disable that awful sound when I plug my phone into charge or take it off charge?

View 2 Replies View Related

Samsung Moment : Disable Gps On Weather App / Battery Life Horrible

Dec 16, 2009

I want to disable gps on weather app cause they stay that can cause my battery life to be horrible too

View 3 Replies View Related

Android :: Media Player Threading

Jul 6, 2010

I have written a Music player app and it works great but when a flip action happens or when I return the the player view I have to stop the player and restart it at the potion that it was at when the action happened. That all works but it means a breif stop and start. How can I run the media player in a different thread and still update my seek-bar?

View 2 Replies View Related

Android :: OpenGL - Threading Texture Loading

Aug 27, 2009

I'm converting an app I've written from Canvas to OpenGL, and not having too hard of a time yet. However, I've run into one snag that I can't seem to get around. My old app was threading image loads, because there are a ton of them, however, it looks like the OpenGL implementation protects itself to a single thread. I have a basic loadBitmap() function as follows:...............

View 4 Replies View Related

Android :: Media Player Threading / Concurrency

Aug 30, 2010

I am using the default Android Media Player in an Activity, trying to play back a couple of video files. However I have a problem with programming what I want. The desired program outcome would be the following:

A video file is played back After that, a dialog is shown, asking the user something A pause of 5 seconds occurs The next video is shown and so forth. How am I to program this? Currently, I use a paradigm like the following:..................

View 1 Replies View Related

Android :: Progress Related Problem Using Threading

Mar 1, 2010

I am using following code to display progress on andorid activity when i call web service method to getposts it show progress. but when call of serivce is complete my application gets crashed.

What mistake am i doing or any other alternative way to achieve this goal?

CODE:........................

View 2 Replies View Related

Android :: Threading - Custom Google Maps Tile Overlay

Nov 4, 2010

I've been stuck for ages now trying to implement threading or background image loading for a custom tile overlay class I've been working on. I'm pretty useless when it comes to Java so threading isn't something I've had any experience with. Basically I have extended an ItemizedOverlay and in the draw() method calculate the tiles I need to display over the standard google tiles then fetch those images with a URLConnection and using BitmapFactory decode them and draw them to the canvas at the correct position on the screen so that the images are on top of the google tiles with about 50% opacity (the custom tiles are cellphone network coverage png's which are used for our web app). I initially got this all working with the tiles loading in the correct places but hit issues with memory and "freezing" while panning so implemented some basic caching and memory management to only store the tiles that are displayed on the map in memory and when downloading a tile store it to SD card.

Then I figured the freezing while panning is due to the blocking nature of downloading the images so, have been trying to implement threading. I created a class that extends AsyncTask to download the images in the background and store them to SD, in the onPostExecute method I then try to draw all the tiles. But onPostExecute never seems to fire, now I know that the AsyncTask has to be called in the main ui thread so tried to debug the execution with Thread.currentThread().getId() calls through out the code. The thread Ids through out is 1 and then 10 for the doInBackground method for the AsyncTask. Now I'm not sure if 1 is the main UI thread or not. In the extended MapActivity class I have, the onCreate method's Thread.currentThread().getId() returns 1 but I'm not sure if the MapActivity class is executed in the main ui thread? Here Romain Guy mentions that the onPostExecute method should have @Override but when I do that eclipse flags it as an error

"The method onPostExecute(Boolean...) of type TileCache.ImageLoadTask must override or implement a supertype method"
So I guess something is wrong there but the only fix eclipse offers is to remove the @Override
So I guess with out post all my source code, the question's I have are:
Is the MapActivity onCreate method called in the main ui thread?
What does the @Override error mean? or why does it show that error
Does anyone have an example of a custom tile overlay implementation with background image loading and tile caching?

View 1 Replies View Related

Sprint HTC Hero :: Text Messaging - Stays In Threading Mode

Dec 14, 2009

When im texting someone, it stays in threading mode, which is fine. When i hit home or whatever to get out of messaging, whenever i get another text, lets say its from another person. I can pull down my notification bar, click the new text, and it just opens up the text i was last in. I think its weird how it wont open the next text message, possibly because the app was running in the background the whole time?

View 3 Replies View Related

Samsung Moment :: Swap Gently Used HTC SPRINT HERO For SAMSUNG MOMENT

Feb 9, 2010

Here I am with 2 HTC Hero phones, with only one on an active account. I would love to try out the Samsung Moment, but don't have the $$ to just go out and buy one.My hero comes with all it had when new, plus I have an extra battery for it I will add to the deal. This hero has only been used for about a week, and while using it, it "lived" in my Blackberry Tour holster to give it maximum protection. There are no scratches or rub marks on it, never been dropped and I have reset it to Factory Specs via the SECURITY MENU and the ESN is clear and ready to be activated on your SPRINT account.Please email me at sy@rayzel.com if you are interested. Maybe we can work out a swap.Now for the additional 1 to 2 feet of snow that is forecast for this afternoon and tomorrow, on top of the 2.5 feet still on the ground.

View 11 Replies View Related

Samsung Moment :: Calling Samsung Moment Data Lockup

Aug 27, 2010

Recently on Sprint's Moment forum a member by the name Mkeng5 has been posting pretty vocal complaints about the Samsung Moment. Not only does he claim the Moment is defective, but he goes a step further and even cites Samsung's own Warranty Policy.

View 38 Replies View Related

Samsung Moment :: Is Samsung Moment Capable Of Multi - Touch?

Oct 21, 2009

I currently own a Palm Pre and I'm ready to ditch it for an Android device. Don't get me wrong, webOS is clean and has a lot of potential, but for now...lacking would be a good (albeit understated) word to describe it. I want to jump the Pre ship for the Samsung Moment, but one thing I keep reading about the Moment is bothering me - everyone says it doesn't have multi-touch. However, I recently read that multi-touch is something Android doesn't yet support. This knowledge was previously unbeknownst to me since I haven't used an Android device since the G1 first launched. Since the Moment uses a standard Android build, the OS wouldn't allow multi-touch even if the phone were capable of it. So my question is: Does anyone know whether or not the Moment is capable of multi-touch? If it's simple a shortcoming of Android, I can deal with it since I know Android 2.0 should finally support it.

View 40 Replies View Related

Samsung Moment :: Browser For The Moment Which Can Open Https Secure Websites

Jan 13, 2010

I am trying to open a secure website (https) and the Moment stock browser balks. Will another browser work or is this a limitation on the phone?

View 10 Replies View Related

Samsung Moment :: Moment Intermittently Won't Respond / Wake Up When Receiving A Call

Jan 26, 2010

I've already done the update but both pre and post update, my Moment intermittently won't respond when getting a call. The call comes in, I hear the ringtone but no matter what buttons I press, the phone won't respond. I have to wait until voicemail kicks in or the call has ended.

I called Sprint technical support and they're going to send a new (I hope it's new) phone. I hate to set up the phone for the third time. Is there a fix or should I just bite the bullet and get the new? phone? Has anyone had this problem?

What experiences have you had with replacement phones from Sprint?

Should I be worried about getting a lemon phone?

View 9 Replies View Related

Samsung Moment : Does Setcpu Speed Up Moment / Use For Downclocking To Save Battery

Aug 7, 2010

Does setcpu speed up the Moment at all or is its only real use for downclocking to save battery?

View 3 Replies View Related

Samsung Moment : Black Friday Deal On Moment $79.99 For New, $99.99 For Current Customers ??

Nov 24, 2009

Gizmodo has a Black Friday list and just added the Moment at a big discount. About the 12th deal listed under Cell phones. It's supposedly offered from Wirefly. Come on and join us the more the merrier. I got mine from BB @ $99.

Black Friday Deals: The Only List You Need - Black Friday - Gizmodo

View 13 Replies View Related

Samsung Moment :: Way To Use Upgrade To Acquire Moment Without Commiting To Data Plan?

Dec 13, 2009

I currently have a voice plan, with sprint, for my dying LG Musik and my father's Palm Centro and am seeking to replace my Musik with a Samsung Moment. I have an upgrade available on my account, however I don't want to get locked into a data plan, since I rarely spend any time away from Wifi.

Does anyone know if there is a way for me to use my upgrade to aquire the Moment without commiting to the data plan?

View 20 Replies View Related

Samsung Moment :: Set Up New Moment Any Way To Mark All As Read Or Fix Count On Gmail?

Dec 6, 2009

set up the wifes new moment her gmail still says 109 unread I went intp gmail on the pc and marked all as read then refreshed on the phone, no luck, tried going to manage apps and clearing all gmail and refreshing, still no luck short of one by one deleting all 109 any way to fix the count?

View 3 Replies View Related

Samsung Moment :: How To Make Moment A Wireless Tether For Internee?

Dec 8, 2009

So i had a hard decision to make when buying a new phone. It was between the HTC Hero and the Samsung Moment. After about 2 weeks I finally made the jump. A lot of the apps are on the I phone and I touch which is pretty cool. But can anyone tell me if it is possible to maybe change the phone kinda like jail breaking? Is there anyway of making the Moment a wireless tether for internee?

View 4 Replies View Related

Samsung Moment :: Number One Complaint / Voice Capabilities Of Moment

Nov 9, 2009

Most every other "issue" to this phone has been a non-issue for me to this point.However, the one feature Samsung really screwed us on is the voice capabilities of the phone.I think they are tied to the Nuance system and therefore unusable by other apps like google voice search and where.I hope samsung or sprint writes a live search app for this phone.I bought the phone with the expectations of this phone being capable of voice commands without being limited by nuance.

View 10 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved