- class MyButtonListener implements OnClickListener {
-
-
- public void onClick(View arg0) {
-
- Intent intent= new Intent();
- intent.putExtra("testIntent", "888888");
- intent.setClass(dialog.this, OtherActivity.class);
- dialog.this.startActivity(intent);
- }
-
- }
- class MyButtonListener implements OnClickListener {
-
- public void onClick(View arg0) {
-
-
- Uri uri = Uri.parse("smsto:13600543522");
- Intent intent= new Intent(Intent.ACTION_SENDTO, uri);
-
- intent.putExtra("sms_body", "The SMS 888888888888");
-
- startActivity(intent);
- }