Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ResolveDialogViewStrategy.java « dialog « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc0f435cdde3d4d47d84ab69a17d70f99fa5eea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.mapswithme.maps.dialog;

import android.app.Dialog;
import android.os.Bundle;
import androidx.annotation.NonNull;

public interface ResolveDialogViewStrategy
{
  @NonNull
  Dialog createView(@NonNull AlertDialog dialog, @NonNull Bundle args);
}