Android :: Is There Any Way To Fully Mask Browser ID
May 11, 2010
Is there any way to fully mask browser ID (on default or other browser). On my "other" device, I could ID either the stock browser or Opera as IE and access non-mobile versions of sites that have sniffers.I do not see the same options on Android. I can disable mobile view but it will not get by some sites that still force mobile versions.
View 7 Replies
May 8, 2010
It seems after the device has been running for a day or two, the Internet browser will cease to fully load web pages. The load bar will get to some point and stop and the page never fully loads. No other web based apps are affected. At first I would restart the device and that, of course, would fix it. Lately I ended up just force stopping the browser and that fixed it as well.
View 14 Replies
View Related
Sep 30, 2010
I rooted my phone back before 2.2 came out. I've played with CWM, made Nandroid and Titanium backups, removed bloat and installed most of the root only apps. What I haven't done yet is flash a ROM. This is mainly because it seems that while there are a crap ton of ROMs being developed out there all of them seem to either not be fully stable or are missing some sort of key feature (camera, videocam, bluetooth, LED, internal storage, etc).
Are there any ROMs that you folks are currently using that's stable and has all the features of the phone working? If not, what's the closest one that you've found?
View 17 Replies
View Related
Oct 28, 2010
I have a single-channel PNG file I'd like to use as an alpha mask for Porter-Duff drawing operations.If I load it without any options, the resulting Bitmap has an RGB_565 config, i.e. treated as grayscale.If I set the preferred config to ALPHA_8, it loads it as a grayscale ARGB_8888 instead.How can I convince Android to treat this file as an alpha mask instead of a grayscale image?
mask1 = BitmapFactory.decodeStream(pngStream);
// mask1.getConfig() is now RGB_565
BitmapFactory.Options maskOpts = new BitmapFactory.Options();
maskOpts.inPreferredConfig = Bitmap.Config.ALPHA_8;
mask2 = BitmapFactory.decodeStream(pngStream, null, maskOpts);
// mask2.getConfig() is now ARGB_8888 (the alpha channel is fully opaque)
View 1 Replies
View Related
Oct 8, 2010
What's the best way to mask a EditText on Android?
I Would like my EditText to behave like this decimal number input here.
Is there a easy way to do this?
View 2 Replies
View Related
May 26, 2010
Is there a way I can specify an input mask to the EditText control in Android?
I want be able to specify something like ### - ## - #### for a Social Security Number. This will cause any invalid input to be rejected automatically (example, I type alphabetical characters instead of numeric digits).
I realize that I can add an OnKeyListener and manually check for validity. But this is tedious and I will have to handle various edge cases.
View 3 Replies
View Related
Feb 24, 2010
Can you guys share how can we mask password input in fullscreen virtual keypad. EditText setPinEditText= new EditText(context); setPinEditText.setImeOptions(EditorInfo.IME_ACTION_UNSPECIFIED);)
I tried using setPinEditText.setTransformationMethod(new PasswordTransformationMethod());
Masking the password input in portrait vkp mode works fine with this change but when I rotate to landscape mode, in fullscreen virtual keyboard mode it doenst worked.
View 9 Replies
View Related
Nov 4, 2013
I want to have a couple of layouts and have one of them animate to reveal the layout below. I've attached a crude image of what I'm attempting to do.
As the top layout animates out of the way, I want all of its contents to remain in their relative positions. The same goes for the layout behind.
I have tried setting one of the layout's height to 0 and then animated it to be full height, but this reeks havoc on the scaling and the placement of the elements inside. I also tried implementing the solution in the link below, but it didn't do what I needed.
Is it possible to mask a View in android? - Stack Overflow
View 5 Replies
View Related
Sep 10, 2013
would enabling a VPN on my PC (such as Private Internet Access) while tethering an android phone running CM 10.1 mask this tethering traffic from the carrier?
View 3 Replies
View Related
Nov 11, 2010
Is there a way to draw a circular gradient mask on a bitmap in Android? Trying to produce something similar to a foggy window. Click the window and a transparent circle shows up revealing whats behind the window. Prefferably using a gradient so the center of the circle is completely transparent and the further out from the center the less transparent. Is this possible?
View 1 Replies
View Related
Oct 2, 2010
I found something that has helped my X photos to have more clarity. But before I write this, this is *not* spam to promote a product. It's just something I wanted to share because I've been a little disappointed with my X photos (as can be seen in some of my prior posts), and there may be others who feel the same way.
After reading the "Droid X vs. Droid Incredible 8MP Camera Showdown" thread comparing photos between the 2 phones, and seeing the sharpness of the Incredible camera over the X (even though the colors of the X appear to be more accurate), I wondered if there was a way to improve the photos taken with my X.
I did a search on the internet and found this free, almost professional-grade photo editing software: GIMP - Wikipedia, the free encyclopedia. So I downloaded it to see how well it worked.
I found that using the "sharpen" feature actually produced a certain harshness to the photos, and the size of the photos were reduced when saving them. After enlarging both the originals and the "sharpened" photos to 100% to compare them, I could see why. The Sharpen filter seems to reduce the overall quality and pixels of the photos, thus producing a harshness.
However, I read on the Wiki site about using the "Unsharp Mask" to accomplish the same thing without the degradation that the Sharpen filter produces. And sure enough, not only were my photos sharper with the "Unsharp Mask," but they did not have that harshness produced by the Sharpen filter. And after enlarging the before-and-after photos to 100%, I could see that the quality of the full-size view had not been reduced in the process as it had with the Sharpen filter. And when saving the edited photos they are approximately the same size as the originals (indicating that some of the photo information hadn't just been "removed" while filtering the picture).
That said, there are settings to the Unsharp Mask that need to be considered. I have changed the "amount" setting from .25 to 1.0 depending on the photo in order to make sure I'm sharpening the photo as much as possible without overdoing it and producing a similar harshness that results from too much alteration. You must be careful to look at the entire photo, and even to enlarge the before-and-after to 100% if needed, to get the proper balance on a per-photo basis.
The photos still aren't quite as sharp as the Incredible's after editing (the optics must simply be better on that camera in that regard). But this near-professional quality software can really make photos stand out with more clarity and it retains the accuracy of the color content of the Droid X camera. It also offers a large selection of interesting filters to do other things with your pictures.
Note: If anyone decides to try this out, be aware that this software attempts to install other programs, but it allows you to decline them. You must decline about 2-3 other programs during the process of installation. I also had to uninstall the Yahoo toolbar afterwards. I guess that's how they can offer it for free.
I apologize if this post is inappropriate -- please feel free to remove it if it causes any offense. I am just really glad that I can tweak my X photos so that they have greater clarity than the X software (including Vignette) produces.
View 9 Replies
View Related
Aug 27, 2010
I cant find any app that automatically turns off your phone after your phone is done charging, or after a set amount of time its fully charged..does anyone know of such an app? does it even exist?
View 7 Replies
View Related
Sep 3, 2010
I want to create a script where I start an emulator and after the system is fully booted, I want to install an .apk.
How can I know when the emulator is fully booted so I can run the install command? Here http://developer.android.com/guide/developing/tools/adb.html it is said that adb wait-for-device install <app>.apk is not correct.
So how can I achieve this? Is it possible? Is my only option to sleep for a few minutes until I can be sure that the emulator is started?
View 2 Replies
View Related
Jul 3, 2013
My android tablet will power on, but after the little green guy goes away it goes to the screen where is only says android and it flashes through the letters. After a couple times it wil stop flasing in between the d & the r. Then keeps doing that.
View 3 Replies
View Related
Aug 24, 2010
I own HTC Desire which has a built-in GPS. It's a really great option, but what really annoys me is this: when I use GPS, my data connection must also be enabled in order to refresh Google Maps. And since data packets in Croatia are still pretty expensive, this is not a option for me. Anyway, the question is: is there a way to fully download Maps to your SD Card without having data connection enabled, but GPS only?
So, just like with standard GPS devices.
View 7 Replies
View Related
Nov 25, 2009
Does anyone know of a way to have the Droid make an alert sound of your choice when the battery is fully charged? It would be awesome to hear when the battery is charged rather than have to keep checking visually at various intervals. I can't keep my hands off of the phone so I can get a little impatient during the charging process sometimes, I'd love to be able to "set it and forget it" until I hear the alert. If there isn't a way to do this, someone should figure out a way to make it so.
View 1 Replies
View Related
Nov 20, 2009
I signed up with a new Google account and apparently it didn't fully register because when I go to the market icon on my HTC I get "password invalid" message screen. I went to google and re-registered a new account but the phone still shows the old username and I can't get rid of it. Needless to say I need to put my new google username with the new password to access the apps. What can I do?
View 4 Replies
View Related
Oct 16, 2010
I need to capture the absolute positions of some ImageViews to use as drop targets. I can't seem to find what event I need to put my code in to read the screen and get the Left(), Top() .. positions. I do not want monitor the inflation of each individual view. There must be some sort of onScreenFinsihed type of event, but I can't find it. onMeasure and onDraw seem to fire at the start of their work, I need to know when they are done.
View 1 Replies
View Related
Jun 3, 2010
how can I get my fixed width site to always appear "fully zoomed in" on webkit (iphone and android) browsers? right now, it looks fine on an iPhone and "too small/zoomed out" on an Android phones that have higher resolution.i'm trying this viewport: <meta name="viewport" content="user-scalable=yes, width=device-width, target-densityDpi=device-dpi, initial-scale=1.0" />
View 1 Replies
View Related
Aug 23, 2009
I would appreciate to hear from you what would be the available options in Android to perform a lossless jpeg rotation of a jpeg image -> Rearranging the image data from landscape to portrait by rotation without ever fully decoding the image. My problem is that my device's camera always take the images in landscape mode and sometimes I would need to rotate the image to portrait to be used in my application. This takes time and memory if I need to do it in the standard way (decode the image, apply rotation operation to the pixels and encode again). Doing it without decoding the image would bring a significant improvement in performance. I have seen that in Android platform (Cupcake) jpegtran.c (which performs this operation beautifully) is available under /external/jpeg but this functionality is not available (a.f.a.k) on the application framework. How can I use this function? I guess I need to use JNI to be able to access this functionality, right? Other ways? Could you give me any hint on how I could do this or if there is another easier and quicker way to do it?
View 2 Replies
View Related
May 12, 2014
I got a new moto g about a week ago and it worked like a charm, but yesterday it started doing something wired, the battery indicator always shows that the phone is fully charged, to the point where it shut its self down because it run out, and still showed battery fully charged.
View 4 Replies
View Related
Aug 27, 2010
So it didn't happen immediately after dropping my phone, but I've dropped my phone a few times from hip level on hard surfaces (concrete,tile, etc.) and one day I noticed my spring on the stand wasn't operating correctly. Basically now my kickstand won't close fully and randomly will pop open or stay open like halfway. So my question is has anyone had this issue yet? Was the repair easy to fix? Just open the backplate and keep performing surgery until the stands spring is accessible?
View 28 Replies
View Related
Nov 1, 2010
I wondered if anyone else had observed this and come to the same conclusion.Obviously, when the Desire is fully charged, the LED goes from orange to green and I assume it starts trickle charging to protect the battery.HOWEVER, if a "high current" application runs when the phone is trickle charging (even just having the screen on - like after the alarm has gone off) and the phone is drawing more than the trickle charging supplies, the battery supplies the rest. Thus, when you unplug it, the battery monitor re-evaluates the state of charge and it is (sometimes) way below 100%.So, I've got into the habit of a) blanking the screen again after the alarm has gone off b) unplugging the phone for a couple of minutes and then plugging it back in to check what charge it really has (and giving it a chance to charge up to 100% again.I suspect there is a bug lurking in there in not switching back to full charge rate if the battery has lost charge.
View 6 Replies
View Related
Jan 2, 2010
Its there any way to make dolphin the default browser for all applications that launch a browser? Like quick search?
View 13 Replies
View Related
Jun 30, 2010
i see petes bb v4 states it is "Fully Deodexed". What does this mean?
View 3 Replies
View Related
Aug 31, 2010
I've been charging my battery for about 4 hours now and it seems to be stuck at around 80-85%ish. I have no idea why, any suggestions?
View 5 Replies
View Related
Feb 11, 2010
Is there an app for the Droid that will indicate when it is fully charged? My wife has the Eris which does a nice job of this. When plugged into the charger, the LED is orange. When it is fully charged, the LED turns green. I would really like something like this so at a glance I can tell if my phone is ready to come off the charger.
View 3 Replies
View Related
Oct 23, 2010
after i got the ota update the gps was working really good and fast now a week later its back to being the same as before it takes forever to lock on and when i do gps test it says im locked on to 3-4 out of the 11 in view. just last week i used the navigation and it got me perfectly to sixflag which is 90miles away from. i haven't rooted my phone ever and i have the j16 build on it
View 4 Replies
View Related
Mar 4, 2010
If you were thinking about rooting your phone, now is the time.Nprussel on XDA has released this.[ROM]-[04/03/10- PUBLIC] VillainROM 3.0 FINAL (HTC Sense - Android 2.1) - xda-developers
- Apps2SD (not tested)
- HUGE APN list
- Loads of languages added (including German)
- Busybox
- JBED
- Root
- Push working perfectly
- 3D Gallery with MULTITOUCH
- Google NAVIGATION working worldwide - as standard.
- Oh, and MAPS has working MULTITOUCH
- HTC Desire Wallpaper & Lockscreen
- HTC Legend Bootscreen (white) - Nexus boot will be made available via update.zip later
- Low Memory Killer tweaks applied
- FIXED Flickr integration and slight widget issues
- aNETSHARE Wifi Tether
- Genie Widget
- Some further tweaks I won't share just yet!
View 30 Replies
View Related
May 8, 2010
I've noticed that when charging my phone overnight, the light will turn green like it is fully charged, but if I unplug it, and plug it back in the light is red again and can take 10-20 minutes to turn green again. It seems the phone doesn't agree with what it considers for the battery to be fully charged. Anyone else have this issue? Is it a software thing?
View 2 Replies
View Related