1

我可以使用以下代码在系统布局中显示图像。我可以自定义系统布局中显示或不显示的系统功能按钮吗?当我打开系统图库应用程序时,我发现视图图像布局中的系统按钮不同。

        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);
        }
4

1 回答 1

1

不,因为这取决于处理意图的应用程序。这实际上可以由 OEM 和用户配置。无法保证一个应用程序将采用的任何参数都将由另一个应用程序处理。请记住,您不只是显示布局 - 您正在启动一个单独的应用程序。

于 2013-07-23T03:22:37.927 回答