HTC Incredible :: Throwing A Web Page From Phone To PC?
Jun 29, 2010
I have noticed that there is a thread on tips for getting web pages from a PC to the phone for viewing ((How to) get a web page from computer to phone. - Android Forums). I don't have a problem with this and I use the qr code extension method with Firefox. What I would like to know is if anyone has come up with an equally simple & quick way to throw a web page found on the phone to their PC? I know of some ways to do it..I'm looking for the most time efficient/easy way to do it.
View 8 Replies
May 23, 2010
This is the fastest way that I know of right now to get a web page displaying on your PC in a browser to your phone. You will need the following applications; Either Google Chrome and QR-tag extension generator(for Chrome), or Firefox and QR-tag extension generator(for Firefox) , and this one for your phone Barcode Scanner v3.3 Application for Android you don't have to use this app there are many others out there(doesn't have to be an Incredible phone either). It should be pretty easy to figure this out now that you see the apps involved but I will explain. First is the obvious, you need to get all apps installed and running on both pieces of hardware. Second when you are on the web page you would like to take with you you simply click on the QR-Code app in your toolbar of Chrome and it will display a QR-code then open your QR-Code reader on your phone and line up the QR-code in its sights. Then simply select web browser and your there.
View 42 Replies
View Related
Jul 25, 2010
I've got my screens set up how I want them (for the most part anyway). Now I realize I still have to empty screens! I'm thinking about just adding some nice widgets that I can have that look nice and might provide some decent enjoyment.
Like maybe a full page Fox News widget or top stories widget? What do you all have?
View 12 Replies
View Related
Sep 6, 2010
Not sure how to properly describe this but bear w/me. I'm running OTA 2.2 on a no-rooted, stock phone. No problems w/ phone what-so-ever until this morning. This morning, when I go to, let's say People or Mail or X-Scope etc, if I either hit the Back or Home button to get back to my Home screen the 2nd HTC boot screen comes up briefly (the one w/ the green HTC letters, then a blank Home screen w/ the "Loading" message briefly appears after which the screen repopulates itself w/ my icons as normal. This is happening in all applications when I hit Back or Home to return to Home. So far I've pulled the battery twice but I still have the problem. Phone is fully charged. Is this what would be considered the Forced Closing problem?
View 4 Replies
View Related
Nov 20, 2010
Why the following xml file should throw NullPointer exception? If I remove all reference to the array hrs_to_wait_values it is ok.
CODE:..............
View 1 Replies
View Related
Jul 29, 2010
Im trying to get an object form my SQLite database in my Android application. I know that the contact is in the database because when I add it and try finding by ID, it returns the object. When I try finding by first and last name, though, it throws an exception and Im left with a null reference.
Here is the query:
CODE:..........
Ive also tried to find just by first name and just by last name. Same result as above.
The exception is an SQLite exception
no such column: aurelius: , while compiling: SELECT _id, last_name, first_name,
email_address, organization_name, label, label_position FROM contacts WHERE
first_name=marcus AND last_name=aurelius
And also happens when trying to select just first or last name
no such column: marcus: , while compiling: SELECT _id, last_name, first_name,
email_address, organization_name, label, label_position FROM contacts WHERE
first_name=marcus
View 1 Replies
View Related
Sep 15, 2010
I want to simulate a KEY_UP press on my phone.. but pragmatically can someone tell me the code of a function that can do this? i found some functions searching on www.google.com but all of them are obsolete.
View 2 Replies
View Related
May 28, 2010
I have a GestureOverlayView over the top of a TextView. The TextView has Linkify.addLinks(tv, Linkify.ALL) called on it.
If you click on an URL in the TextView the following exception is thrown Running 2.2 (apparently a pre-release version)
CODE:...............
View 5 Replies
View Related
Sep 10, 2010
I'm trying to implement a custom MapView. Inside my MapActivity (named mainmap) I have an inner class which extends MapView:
CODE:........
I have my main.xml formatted to find the inner class like so:
CODE:................
Also, in Androidmanifest.xml, I have the appropriate <uses-library android:name="com.google.android.maps"/> entry.
When I try to run my app, I get (amongst other things) in logcat:
CODE:..............
This is caused by this entry I find in logcat:
CODE:...............
If I understand correctly, my app is crashing because Android is saying it doesn't find the appropriate constructor for my custom MapView (the Lmapview class). As you can see above, however, it is defined and it matches the signature it is looking for.
View 1 Replies
View Related
Oct 9, 2010
This code works fine if I move the findViewById call in to the Activity. Any hints as to why it doesn't work from inside the LearningView class? I've tried moving the TextView inside the com.example.LearningView tag but no joy. I'd prefer to get the TextView from within the SurfaceView subclass as I feel it's more logical to treat the TV as a "child" of the SV.
This is a contrived example I wrote to figure out the problem in a larger application, but the gist of it is the same, and the stack trace is basically the same.
For what it is worth, the findViewById call is returning null, which obviously threw NullPointerExceptions in some attempts to fix this.
As you can probably gather from my attempts I'm flying blind on this one.
Learning.java:
CODE:..........
main.xml:
CODE:..............
Stack trace:
CODE:......................
View 1 Replies
View Related
Aug 6, 2010
I am accessing a URL that's redirecting me to a URL with spaces in it. (Using HttpClient 4.x) How do I prevent this from throwing an error (replacing the spaces with %20 not +)
CODE:..................
View 3 Replies
View Related
Sep 12, 2009
I turned on DEBUG_CHECK_GL_ERROR for my GLSurfaceView to try to figure out why I'm having a problem on pause/ resume/reload everything, and when I turned it on, I got an UnsupportedOperationException when calling GL11.glGenBuffers() (for creating Vertex Buffer Objects).
Why is it saying that operation is unsupported when:
1) The vertex_buffer_object extension is listed on the target device and my code checks for it before trying to use VBOs.
2) VBOs are working correctly (and really well might I add).
This is on a G1. Yes, I know the G1 is only OpenGL ES 1.0 compliant and I'm trying to use a 1.1 extension, but if the phone lists the extension, doesn't that mean I can use it? Also - the extension works! Does this mean that it works but use-at-your-own-risk, kinda like how SoundPool was in Android 1.0?
View 2 Replies
View Related
Apr 19, 2010
I only get this after signing in with my verizon account, but I can't preorder.
View 5 Replies
View Related
Apr 7, 2010
I'm currently working on an android app that pulls a list of forums from a JSON feed. I'm trying to parse the feed and immediately upon calling getJSONArray a JSON exception is being thrown with no stack trace. The JSON being returned is stored in an JSONObject jobj with the format as follows: However when running the following code, I get an immediate exception without a stack trace: Code...
View 1 Replies
View Related
Apr 6, 2010
I created a TextView and put an url to it, using setText(Html.fromHtml("");. Its opening the web page in the built-in browser and when I press back, its coming back to the application.
I don't want to come back to the application, so in activity's onResume(), I call finish(). Its exiting at the first time. But when I open the application again, its throwing some exception.
Any other way to close the application, other than this way.
View 2 Replies
View Related
Aug 27, 2010
I'm having trouble with a spiner throwing a nullPointerExpression I'm sure I'm missing something stupid? Code...
View 2 Replies
View Related
Sep 10, 2010
How do you refresh a web page in the stock browser? Am I missing something, seems like this should be basic functionality?
View 6 Replies
View Related
May 3, 2010
I was wondering if there was a way to get a shortcut to the page you get from dialing *#*#4636#*#*. Once I have opened it, I can quickly access it by holding home button, but I want to have a quick button to it on my home screens if possible.
View 2 Replies
View Related
Jan 25, 2010
I have added this line in my androidManifest.xml <uses-permission android:name="android.permission.INJECT_EVENT"/>
I am trying to execute following code:
CODE:........
Both above lines are throwing exception W/System.err(762): java.lang.SecurityException: Injecting to another application requires INJECT_EVENT permission.
Do we need anything else too to get it working ?
View 4 Replies
View Related
Apr 14, 2014
I have the tronsmart CX-919 mini pc running 4.2 and there is an issue with the browser reverting back to the home page or the previous page. When I try to display a webpage on our intranet it reverts back to the homepage or previous page after about 3 hours. I need it to display constantly. I read somewhere that it was a Download Manager issue and disabling it would work but I can't find where to disable it. Also it was stated that Flash was an issue but i tried uninstalling it and it just reinstalled itself and the problem kept occurring. I just want to display a page in a browser and for it to stay on the screen (full screen) until I manually navigate away from it. I plan to leave it on for weeks at a time.
View 1 Replies
View Related
Aug 6, 2010
I am trying to use open intents simulator and do all the settings according to the instructions. But when i tried to run a sample program, after running, its directly going to the "connections settings page" in openintents.apk.
View 49 Replies
View Related
Apr 12, 2010
how do you paste copied text (ie a URL) from a web page into a new window to open that page?
Also can you restrict internet connection to 3g or 2 g only?
I've just come from n900 so trying to figure out the differences!
View 2 Replies
View Related
Jun 13, 2010
Can anyone tell me how to change the stock front display clock to a regular digital instead of a flip clock style?
View 2 Replies
View Related
May 27, 2010
We are on the front page of You Tube! GO Incredible!
YouTube - Broadcast Yourself.
View 1 Replies
View Related
Aug 24, 2010
Is there a program that will do this? I want to have different color schemes/themes on each page.
View 6 Replies
View Related
Feb 2, 2009
I am developing simple RSS Reader kind of application.In my applicaion i cant go back from Webview page to previous page.i can go back from all pages except the page where i have used Webview.What could be the reason?why i cant go back?
View 3 Replies
View Related
Aug 8, 2009
Is there a way to make a page load and display the whole page to begin with like the iPhone rather than being zoomed in?
View 2 Replies
View Related
Aug 23, 2010
Can I bypass the phone log page that appears after all phone calls? I'd much rather finish talking and be back at my home page without pressing the home key.
View 2 Replies
View Related
May 17, 2010
I don't want to add the Favorite's tool aka People Widget. I want to add a single contact to one of the pages. I had my boyfriend on one, but I wanted to move it to another page, and I accidentally deleted the icon (he's still in my People contact list). But I can't figure out how to add just ONE contact to the desktop.
View 1 Replies
View Related
Sep 12, 2010
Since I upgraded to 2.2 I get a prompt to install software and the VZW web page in automatically launched every time I plug my phone into my computer. I read before my upgrade that this would happen once and then go away after it was declined once but mine seems to be persistent. I'd really rather not install their unnecessary software.
View 12 Replies
View Related