' Create the JavaObject for Uri
Dim Uri As JavaObject
Uri.InitializeStatic("android.net.Uri").RunMethod("parse", Array("content://com.xdja.switchsystem.assistantprovider"))
' Create the Bundle
Dim bundle As JavaObject
bundle.InitializeNewInstance("android.os.Bundle", Null)
bundle.RunMethod("putBoolean", Array("is_switchable", p0))
' Get the ContentResolver and call the method
Dim mContext as JavaObject
mContext.initializeContext
Dim contentResolver As JavaObject
contentResolver =mContext.RunMethod("getContentResolver", Null)
contentResolver.RunMethod("call", Array(CONTENT_URI_SWITCH_SYSTEM, "setSwitchable", Null, bundle))