我可以使用以下代码在系统布局中显示图像。我可以自定义系统布局中显示或不显示的系统功能按钮吗?当我打开系统图库应用程序时,我发现视图图像布局中的系统按钮不同。
public void onClick(View v) {
// TODO Auto-generated method stub
int id = v.getId();
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://" + arrPath[id]), "image/*");
startActivityForResult(intent,ForBrowse);
}