Android Question delete sms without default app

nortonir

Member
Licensed User
Longtime User
Hi
please see:
http://forum.xda-developers.com/showthread.php?t=2551072

can do this in b4a?

Intent intent = new Intent(Intent.ACTION_MAIN);
ComponentName cn = new ComponentName("com.android.settings", "com.android.settings.Settings");
intent.setComponent(cn);
intent.putExtra(":android:show_fragment", "com.android.settings.applications.AppOpsSummary");
startActivity(intent);

thanks
 

NJDude

Expert
Licensed User
Longtime User
Here:
B4X:
Private i As Intent
i.Initialize(i.ACTION_MAIN, "")
i.SetComponent("com.android.settings/.Settings")
i.PutExtra(":android:show_fragment", "com.android.settings.applications.AppOpsSummary")
StartActivity(i)
I don't know what is supposed to happen but here it is :D
 
Upvote 0
Top