Back to project page iEtueri.
The source code is released under:
GNU General Public License
If you think the Android project iEtueri listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package navigationdrawer; //from ww w .java 2s . com import android.app.Fragment; import android.content.Intent; import android.net.Uri; import android.os.Bundle; public class OpenBrowser extends Fragment { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://etueri.com/es/index.aspx")); startActivity(browserIntent); } }