你怎么能用选择对话框分享像android中的whatsapp一样的位置?

时间:2018-05-30 09:37:22

标签: android android-intent google-maps-api-3 whatsapp android-intent-chooser

我希望 “共享位置” 功能与我当前应用程序中的 whatsapp 相同。 Here is a chooser dialog

Here is a share location screen

After selecting your location it displays like this

现在打开选择器对话框,我使用了下面提到的代码。

public static void showFileChooser(Activity activity, Fragment fragment, boolean isAllowMultiple) {
        try {

            File imageStorageDir = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM), "demo");
            if (!imageStorageDir.exists()) {
                imageStorageDir.mkdirs();
            }
            File file = new File(imageStorageDir + File.separator + "i" + String.valueOf(System.currentTimeMillis()) + ".jpg");
            mCapturedImageURI = Uri.fromFile(file); // save to the private variable

            final Intent captureIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
            captureIntent.putExtra(MediaStore.EXTRA_OUTPUT, mCapturedImageURI);
            captureIntent.putExtra("capturedimageuri", mCapturedImageURI.toString());

            // Intent for Audio Recording
            final Intent audioRecordIntent = new Intent();
            audioRecordIntent.setAction(IxxxConstants.ACTION_AUDIO_RECORD);

            final Intent videoRecordIntent = new Intent();
            videoRecordIntent.setAction(IxxxConstants.ACTION_VIDEO_RECORD);

            // Use the GET_CONTENT intent from the utility class
            Intent target = com.xxx.xxx.filechooser.FileUtils.createGetContentIntent();
            if (isAllowMultiple) {
                target.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
            }
            // Create the chooser Intent


            if (activity != null) {
                Intent intent = Intent.createChooser(
                        target, activity.getString(R.string.chooser_title));

                intent.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[]{captureIntent, audioRecordIntent, videoRecordIntent});
                activity.startActivityForResult(intent, IMAGE_ANNOTATION_REQUEST_CODE);
            } else {
                Intent intent = Intent.createChooser(
                        target, fragment.getString(R.string.chooser_title));

                intent.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[]{captureIntent, audioRecordIntent, videoRecordIntent});
                fragment.startActivityForResult(intent, IMAGE_ANNOTATION_REQUEST_CODE);
            }

        } catch (ActivityNotFoundException e) {
            xxxLog.e(DEBUG_TAG, "Error:" + e);
        } catch (Exception ex) {
            ex.printStackTrace();
            CommonUtilities.showToast(activity, activity.getString(R.string.error_message), Toast.LENGTH_LONG);
        }
    }

此代码选择器打开后类似于此。 enter image description here

现在,我如何在此文件选择器对话框中添加共享位置图标,然后选择特定位置并将其分享给聊天应用程序中的其他用户?

1 个答案:

答案 0 :(得分:1)

尝试:

  1. 任何选择器都不具备各种类型的操作(即视频,位置,音频,文档等),每个选择器都基于一个类别。因此,对于此选择器屏幕,请使用 Bottomsheet dialog 。它与自定义布局的对话框相同。只需制作一个与屏幕相同的布局并在此处充气。
  2. 点击位置的现在内部对话框打开谷歌的 place picker 。它看起来与您的位置选择器屏幕相同。
  3. 对于位置显示,请在recyclerview中使用自定义项目布局。即布局将具有线性布局(垂直) - > imageview和两个带有一些填充的textview。的 Recyclerview demo 即可。