hi everyone
here is my method in java
public void openWebURL( String inURL ) {
Intent browse = new Intent( Intent.ACTION_VIEW , Uri.parse( inURL ) );
startActivity( browse );
}
}
and i'm just typing
openWebURL("www.google.com");
in my java file onStart section
but my app just doesn't open,
what is the problem?
maybe i have to write an action in manifest?
i'm new in android dev. so sorry if this quest. is silly