Flutter Engine
The Flutter Engine
shell
platform
android
io
flutter
embedding
engine
plugins
contentprovider
ContentProviderAware.java
Go to the documentation of this file.
1
// Copyright 2013 The Flutter Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
package
io.flutter.embedding.engine.plugins.contentprovider;
6
7
import
androidx.annotation.NonNull;
8
9
/**
10
* A {@link io.flutter.embedding.engine.plugins.FlutterPlugin} that wants to know when it is running
11
* within a {@link android.content.ContentProvider}.
12
*/
13
public
interface
ContentProviderAware
{
14
/**
15
* Callback triggered when a {@code ContentProviderAware} {@link
16
* io.flutter.embedding.engine.plugins.FlutterPlugin} is associated with a {@link
17
* android.content.ContentProvider}.
18
*/
19
void
onAttachedToContentProvider
(@NonNull
ContentProviderPluginBinding
binding);
20
21
/**
22
* Callback triggered when a {@code ContentProviderAware} {@link
23
* io.flutter.embedding.engine.plugins.FlutterPlugin} is detached from a {@link
24
* android.content.ContentProvider}.
25
*/
26
void
onDetachedFromContentProvider
();
27
}
io.flutter.embedding.engine.plugins.contentprovider.ContentProviderAware
Definition:
ContentProviderAware.java:13
io.flutter.embedding.engine.plugins.contentprovider.ContentProviderAware.onAttachedToContentProvider
void onAttachedToContentProvider(@NonNull ContentProviderPluginBinding binding)
io.flutter.embedding.engine.plugins.contentprovider.ContentProviderAware.onDetachedFromContentProvider
void onDetachedFromContentProvider()
io.flutter.embedding.engine.plugins.contentprovider.ContentProviderPluginBinding
Definition:
ContentProviderPluginBinding.java:14
Generated on Sun Jun 23 2024 21:55:09 for Flutter Engine by
1.9.4