We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public class MainActivitkjdshfksadf extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main_activity); Button button = (button) findIdByView(R.id.button_1); button.setOnClickListener(new View.OnClickListener(){ Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("http://www.baidu.com")); startActivity(intent); }) }
<intent-filter> <action android:name="android.intent.action.MAIN" /> <data android:scheme="http:"/> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在MainActivity.java下
并在AndroidManifest.xml里注册
The text was updated successfully, but these errors were encountered: