如何设置Intent参数以显示更多布局细节?

时间:2013-07-23 03:20:12

标签: android

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

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

1 个答案:

答案 0 :(得分:1)

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