Instead of handling showing and picking the media ourselves, use existing AcitivityResultContracts to pick images, videos or contacts Change-Id: I20079ad94882cc6bbfeae8d57ca0e4aa30612c01
80 lines
2.5 KiB
Java
80 lines
2.5 KiB
Java
/*
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
* Copyright (C) 2024 The LineageOS Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.messaging.ui.mediapicker;
|
|
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
|
|
import com.android.messaging.R;
|
|
|
|
/**
|
|
* Chooser which allows the user to select one or more existing images or videos or audios.
|
|
*/
|
|
class GalleryMediaChooser extends MediaChooser {
|
|
/** Handles picking a media from the document picker. */
|
|
private final DocumentImagePicker mDocumentImagePicker;
|
|
|
|
GalleryMediaChooser(final MediaPicker mediaPicker) {
|
|
super(mediaPicker);
|
|
mDocumentImagePicker = new DocumentImagePicker(mMediaPicker, data -> {
|
|
if (mBindingRef.isBound()) {
|
|
mMediaPicker.dispatchPendingItemAdded(data);
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override
|
|
public int getSupportedMediaTypes() {
|
|
return (MediaPicker.MEDIA_TYPE_IMAGE
|
|
| MediaPicker.MEDIA_TYPE_VIDEO
|
|
| MediaPicker.MEDIA_TYPE_AUDIO);
|
|
}
|
|
|
|
@Override
|
|
public int getIconResource() {
|
|
return R.drawable.ic_image_light;
|
|
}
|
|
|
|
@Override
|
|
public int getIconDescriptionResource() {
|
|
return R.string.mediapicker_galleryChooserDescription;
|
|
}
|
|
|
|
@Override
|
|
protected View createView(final ViewGroup container) {
|
|
final LayoutInflater inflater = getLayoutInflater();
|
|
final View view = inflater.inflate(
|
|
R.layout.mediapicker_gallery_chooser,
|
|
container /* root */,
|
|
false /* attachToRoot */);
|
|
|
|
final View enabledView = view.findViewById(R.id.mediapicker_enabled);
|
|
enabledView.setOnClickListener(v -> {
|
|
// Launch an external picker to pick item from document picker as attachment.
|
|
mDocumentImagePicker.launchPicker();
|
|
});
|
|
return view;
|
|
}
|
|
|
|
@Override
|
|
int getActionBarTitleResId() {
|
|
return R.string.mediapicker_gallery_title;
|
|
}
|
|
}
|