Samsung Fascinate :: Position Of Volume And Power Buttons
Oct 20, 2010
Is anyone else annoyed by the fact that the volume and power buttons are positioned at the same level on opposite sides of the phone? When I try to hit the power button I usually hit the volume button as well because of the positioning so my ringer goes from vibrate to on or changes volume. The power button really should have been up top.
View 25 Replies
Sep 17, 2010
How do you position the cursor in a text box? Evidently, some of the other Galaxy S models have an alternate keypad pop up when you press and hold the ?123 key in a text box.I have not been able to make it work on my Fascinate. See this article for details and do a search for "?123": Galaxy S Tips and Tricks (works w/ Captivate, Epic 4G, Fascinate, Vibrant)Is there some other method to accurately position the cursor as shown above?
View 4 Replies
View Related
Aug 26, 2010
Volume Buttons have stopped working. How annoying. Just got everything setup my invisible shield on. And I am going to have to get a new phone.
View 6 Replies
View Related
Nov 26, 2010
I got a privacy screen protector for my Fascinate and it looks GREAT, except one problem. Now I am having sensitivity issues. All the buttons seem to work on the screen except the locked ones on the bottom (phone, contacts, messaging, applications). I can use ALL other buttons except these will not work.
View 2 Replies
View Related
Sep 13, 2010
My volume buttons seem loose. Is that normal you think? Perhaps its a petty thing to think about, but play (I can hear them rattle a bit if I shake the phone gently) in my experience leads to quick wear.
View 3 Replies
View Related
Nov 21, 2010
After being a dedicated bb user, I recently switched to a droid. I'm completely satisfied, however, I have had a small issue with my lock/power button. I've only had the phone for two weeks, but my power/lock button seems to be "stuck". I can still push it, but it's not as "click able" as when I first purchased it. I wish I could explain it better. I actually went to verizon a few days ago, and they weren't much help. The tech actually sprayed some of that air in a can stuff, which temporarily made it better. However, it now seems stuck again. Has anyone had this problem? Sorry for being such a new b!
View 2 Replies
View Related
Nov 2, 2010
After getting so used to this on my incredible, its kind of a pain to have to use rom manager or voodoo toggle app to boot directly to recovery
(MOD) Add Reboot Option to Power Menu - xda-developers
tiger4life ported this over for the fascinate.
promise this is my last xda link of the day
View 6 Replies
View Related
Nov 1, 2010
Once a day my phone freezes to the point that the bottom buttons are non-responsive. The only fix is to reboot.Any ideas? There's no pattern - it can happen as I'm actively using the phone or as I start to use it after it's been idle for an hour.
View 7 Replies
View Related
Sep 9, 2010
Anyone else have a loose volume rocker, it actually moves around a bit without me even touching it. It doesn't change the volume settings or anything(unless i press the button) but it does make a sound when I move the phone around. It's kind of annoying.
View 33 Replies
View Related
Sep 14, 2010
I noticed while web browsing if you use the volume rocker switch, it will zoom in & out & format the text accordingly. I then tried this on a D1 & DInc which did not do the same. Just thought I'd share this info.
View 5 Replies
View Related
Sep 13, 2010
What is the icon in the Android Power Control that looks like a refresh button? I can toggle on/off, but not sure what it does.
View 3 Replies
View Related
Oct 31, 2010
Every now and then when I get a text and try to reply, none of the letter buttons will work. From what I've tried, the only way to fix it is to exit all the way out of the messaging application and go back in. The buttons will animate like they are being pushed, vibrate, and even show swype trails and word suggestions, but none of my words will show up on the screen.
I haven't figured out the specific instances when this happens. It seems a little random but I think it may only happen when I lock the screen without leaving the messaging application first, I get a text, and try to reply immediately from the app. But I'm really not sure - it might just be random.
View 7 Replies
View Related
Oct 31, 2010
Just found out I hear annoying noise when I push power button time to time. Is it because of cheap plastic or my SF is the only one have weird power button? I heard some people say volume rocker is wiggly, but my power button makes annoying noise.. like scratching blackboard with fingernail?
View 4 Replies
View Related
Oct 2, 2010
I just came over from a D1. I am trying to install OCLF on my SF but I am a little stuck and cannot find the answer... When I go to reboot my phone into recovery mode... what buttons do I push? On my D1 it was easy cause it had buttons ..
View 1 Replies
View Related
Sep 12, 2010
I noticed that when i turn don't the volume with the rocker button on the side it says ringtone and only lowers the ringer volume. The system and notification volume stays loud. Is there and way to control them all at once?
View 3 Replies
View Related
Sep 14, 2010
Is it me or is the volume really low on the auxillary output when you plug it into your car and play MP3's?
whats with that? I've read a lot of users claiming it to be loud. media volume is turn up...
I'm a previous droid user and that one was actually loud. am i missing something?
View 5 Replies
View Related
Mar 22, 2012
I have background jpeg image
I need to position buttons over organs like stomach,heart ,lungs,intestine etc. Do you know how to position it exactly over each organs
View 1 Replies
View Related
Aug 18, 2010
RelativeLayout is more flexible, and can do what AbsoluteLayout can do and more.
http://developer.android.com/reference/android/widget/RelativeLayout....
To place views on top of one another you can also use FrameLayout, positioning these frame layouts in their parent layout:
http://developer.android.com/reference/android/widget/FrameLayout.html
18.08.2010 19:11, ericmahlon пишет:
> I have an image that will have 5 different areas that will be "clickable." Each clickable area will be invisible and play a different sound. I was told not to use an absolute layout, and use a linear layout instead. However, I am now having an issue with placing the buttons over the picture. The linear layout does not allow me to position them correctly where they need to go. How do I properly position a button so that it is over a certain part of the image?
View 3 Replies
View Related
Nov 6, 2009
I am trying to swap the position of two buttons. My swapping code looks as below.
private void exchangeButtons(Button btn1, Button btn2) {
// Create the animation set AnimationSet exchangeAnimation = new AnimationSet(true);
TranslateAnimation translate = new TranslateAnimation(Animation.RELATIVE_TO_SELF, btn2.getLeft(), Animation.RELATIVE_TO_SELF, btn1.getLeft(),
Animation.RELATIVE_TO_SELF, btn2.getRight(), Animation.RELATIVE_TO_SELF, btn1.getRight() );
translate.setDuration(500); exchangeAnimation.addAnimation(translate);
// int fromX = btn1.getLeft();
// int fromY = btn1.getRight();
// int toX = btn2.getLeft();
// int toY = btn2.getRight();
Log.d("ArrangeMe", "view1 pos:" + btn1.getLeft() + ", " +btn1.getRight() + "view2 pos:" + btn2.getLeft() + ", " + btn2.getRight());
AnimationSet exchangeAnimation1 = new AnimationSet(true);
TranslateAnimation translate1 = new TranslateAnimation(Animation.RELATIVE_TO_SELF, btn1.getLeft(), Animation.RELATIVE_TO_SELF, btn2.getLeft(),
Animation.RELATIVE_TO_SELF, btn1.getRight(), Animation.RELATIVE_TO_SELF, btn2.getRight());
translate1.setDuration(500); exchangeAnimation1.addAnimation(translate1);
// EXECUTE
btn1.startAnimation(exchangeAnimation);
btn2.startAnimation(exchangeAnimation1); }
I call the code as below:
exchangeButtons(button1, button2);
My layout looks as below:
what happens when I execute the code is, instead of the buttons exchanging their positions, they just disappear for sometime[may be 500 ms] and reappear as they were originally.
View 4 Replies
View Related
Dec 3, 2012
My external button is stuck down, and when I press the power button to wake my phone up it thinks that I am pressing both at the same time. So the phone goes into the Hboot screen, where I cannot choose a function. (because the volume button is stuck down position.) I have to remove the battery and wait about an hour or so then re-insert the battery and pray that it loads up. What can I do to stop this from happening? Or is there a way to control the Hboot screen other than using the volume button?
View 2 Replies
View Related
Sep 29, 2010
Volume key kind of shaky "loose". Normal? or?
View 18 Replies
View Related
Jul 9, 2010
I am using seek bar to control volume of the device. I am able to change the volume of the device using thumb of the seek bar just by dragging it on touch pad. But when user presses volume(side) keys I need to set seek bar thumb position accordingly.
View 1 Replies
View Related
Jun 8, 2010
I've been using this phone for a days now and I'm a bit annoyed that the volume buttons seems loose already especially the down button.
View 8 Replies
View Related
May 5, 2010
Regarding the hardware buttons on HTC Legend - how are you finding the quality of these to be?
I'm somewhat concerned about my power button especially as I've had the phone for about 2 weeks now and already it's almost pushed down to the level of the phone. Granted that I probably press it no less than 30 times a day to unlock the phone but still...
I also read somewhere that there might be another option to unlock the phone instead of pushing the power button, anyone know what this might be? (If it isn't a myth that is.) Noting the wide range of apps out there, I wonder if it might be possible to change the hardware button for locking, and maybe put it to another button (or to enable some type of rotation between buttons). Any other tips would be great!
My home button too is feeling a bit slack... Can anyone comment on this and how their button feels?
On the bright side, the volume rocker is perfect.
View 7 Replies
View Related
Jul 22, 2010
if i turn the power off/on the 4 buttons under the screen don't light up at all.even when using them.if i lock and unlock the phone, they start working normally again.
View 8 Replies
View Related
May 25, 2010
If you'll recall, the power button, volume rocker, micro usb port as well as backplate were all the infamous red color, prior to the Incredible's release. A few of us actually liked the uniqueness of the red backplate and photos of a version of the phone were even leaked, sporting a black backplate & red buttons.
I noticed yesterday that the micro USB port trim (currently black) has a little piece of the plastic chipped away. The interesting thing I noticed is that, below the black, I can see a hint of the red. Personally, I'd prefer red accents for the three areas.
View 12 Replies
View Related
Jun 29, 2010
Is there a way to reprogram the functionality of the volume buttons to act like zoom in and out when using the camera? Evo 4g
View 6 Replies
View Related
Jun 24, 2010
I am a phone junky, I've had a bunch of phones including all the bberry's. Love my incredible, it's like going 10 years in the future. The only issue I have is I keep bumping the volume buttons. Why don't they have an option to Lock the volume by pushing both buttons at one time? Push both of item again and but unlocks the volume.
View 3 Replies
View Related
May 20, 2010
I need to use volume buttons to control a variable parameter in my application. I use Activity.onKeyDown to get notified when the button is pressed but the media volume is also increased. Android is doing something like below when I press the volume key:
1. increase media / ringtone volume
2. pass the event to my application
Is there a way to avoid increasing the system volume and use volume key only for my application?
View 1 Replies
View Related
Aug 27, 2013
Any way of completely disabling the physical volume up/volume down buttons (specifically on an SG Mega 6.3)? I never, ever use them, other than to put the volume backup having accidentally depressed volume down! If there's any kind of app or tweak that will disable them that would be great. The only caveat is that my device isn't rooted.
View 1 Replies
View Related