[android-beginners] Re: more experimenting, new view

2009-07-02 Thread Michael Dorin
Redid everything from scratch. Still a blank, dark dark screen. (Except for the hello, Webview on the top) I would really appreciate any ideas. Code is below. Thank you. -Mike package com.example.hellowebview; import android.app.Activity; import android.os.Bundle; import

[android-beginners] Re: more experimenting, new view

2009-07-02 Thread Mark Murphy
Redid everything from scratch. Still a blank, dark dark screen. (Except for the hello, Webview on the top) I would really appreciate any ideas. Does the built-in Browser application work? If not, your emulator probably is having networking woe. -- Mark Murphy (a Commons Guy)

[android-beginners] Re: more experimenting, new view

2009-07-02 Thread Michael Dorin
Yes, built in browser works fine. Did I mess up the manifest? (See below) -Mike ?xml version=1.0 encoding=utf-8? manifest xmlns:android=http://schemas.android.com/apk/res/android; package=com.example.hellowebview android:versionCode=1 android:versionName=1.0 uses-permission

[android-beginners] Re: more experimenting, new view

2009-07-02 Thread Mark Murphy
Yes, built in browser works fine. Did I mess up the manifest? (See below) Not in an obvious way. I'm a lousy code reviewer, though. I would try to find some complete code that works and start from there. Hello, WebView is nice, but without actual files implementing the answer, it is difficult

[android-beginners] Re: more experimenting, new view

2009-07-02 Thread Michael Dorin
Mark, Thank you for the tip. I got WebViewDemo going...but not being content as to why that works and why mine didn't I dug a bit more. If anybody is interested...I changed the layout (see below for original) wrap_contents to fill_parent, as was done in the WevViewDemo. That works. If

[android-beginners] Re: more experimenting, new view

2009-07-01 Thread Mark Murphy
Michael Dorin wrote: Tonight's experimenting lead me to the hello-webview tutorial. http://developer.android.com/guide/tutorials/views/hello-webview.html I can't get that darn thing to work! I just get a blank screen. I have seen a few comments such as this posted, but I can't follow

[android-beginners] Re: more experimenting, new view

2009-07-01 Thread Michael Dorin
Actually, I thought in one iteration I had done that. I will try again and post. -Mike On Wed, Jul 1, 2009 at 9:12 PM, Mark Murphymmur...@commonsware.com wrote: Michael Dorin wrote: Tonight's experimenting lead me to the hello-webview tutorial.