public void onClick(View v) {
// TODO Auto-generated method stub
Intent i = new Intent();
i.setClassName("PackageNameOfOtherApp", "ClassNameWithPackageOfOtherApp");
Bundle b = new Bundle();
b.putString("name", "umer");
b.putString("num", "1234");
i.putExtras(b);
startActivity(i);
}
});
**************Menifiest**************
</activity>
<activity android:name="ClassNameWithPackageOfOtherApp" >
</activity>
No comments:
Post a Comment