AIDE Tutorial - 9 Internet Button
Define a button in main.xml
<Button
android:onClick="Click1"
android:text="Click Me"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
Import these three View, Intent and Uri in java
import android.view.View;
import android.content.Intent;
import android.net.Uri;
And then add the following code after R.main
public void Click1 (View view){
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://shyamkumarkc.blogspot.com")));
}
0 comments:
Post a Comment