[android] Remove unused ProgressDialogFragment file (#10354)

Signed-off-by: parneet-guraya <gurayaparneet@gmail.com>
This commit is contained in:
Parneet Singh 2025-02-28 12:26:38 +05:30 committed by Roman Tsisyk
parent a11c266584
commit 018dfb0cbc
2 changed files with 0 additions and 90 deletions

View file

@ -1,69 +0,0 @@
package app.organicmaps.dialog;
import android.app.Activity;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.Nullable;
import androidx.fragment.app.DialogFragment;
import androidx.fragment.app.Fragment;
import app.organicmaps.R;
public class ProgressDialogFragment extends DialogFragment
{
private static final String ARG_MESSAGE = "title";
private static final String ARG_CANCELABLE = "cancelable";
private static final String ARG_RETAIN_INSTANCE = "retain_instance";
public ProgressDialogFragment()
{
// Do nothing by default.
}
protected void setCancelResult()
{
Fragment targetFragment = getTargetFragment();
if (targetFragment != null)
targetFragment.onActivityResult(getTargetRequestCode(), Activity.RESULT_CANCELED, null);
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
Bundle args = requireArguments();
setRetainInstance(args.getBoolean(ARG_RETAIN_INSTANCE, true));
setCancelable(args.getBoolean(ARG_CANCELABLE, false));
}
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable
Bundle savedInstanceState)
{
View view = inflater.inflate(R.layout.indeterminated_progress_dialog, container, false);
Bundle args = requireArguments();
TextView messageView = view.findViewById(R.id.message);
messageView.setText(args.getString(ARG_MESSAGE));
return view;
}
@Override
public void onCancel(DialogInterface dialog)
{
setCancelResult();
}
@Override
public void onDestroyView()
{
if (getDialog() != null && getRetainInstance())
getDialog().setDismissMessage(null);
super.onDestroyView();
}
}

View file

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/body"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:padding="16dip">
<ProgressBar
android:id="@android:id/progress"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="16dip"/>
<TextView
android:id="@+id/message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"/>
</LinearLayout>