我有一个表单,我想根据另一个组合框1的值选择一个组合框2的ListIndex。
我尝试使用以下代码,但没有成功。
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/folder_name/");
intent.setDataAndType(Uri.fromFile(file), "resource/folder");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
if (this.cordova != null)
{
this.cordova.startActivityForResult((CordovaPlugin) this, Intent.createChooser(intent,
new String(title)), (srcType + 1) * 16 + returnType + 1);
}