Hi all,
I'm looking for an easy way to convert HelloWorld code to code that displays a simple web browser.
In other words, how can I pass from this code:
public class HA extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
}
}
to simple code for browsing the web (with a button at the menu bar that calls a function):
<HelloWorld.java> ???
<res\drawable> ???
<res\layout> ???
<res\layout> ???
Thanks,
Ruben