mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-27 16:33:38 +00:00
[Android] Standalone Note UI in Category select screen
Signed-off-by: hemanggs <hemangmanhas@gmail.com>
This commit is contained in:
committed by
Konstantin Pastbin
parent
9e494ed8a5
commit
2492e8bda4
@@ -7,8 +7,12 @@ import android.view.ViewGroup;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
|
||||
import com.google.android.material.textfield.TextInputEditText;
|
||||
|
||||
import app.organicmaps.R;
|
||||
import app.organicmaps.sdk.editor.data.FeatureCategory;
|
||||
import app.organicmaps.sdk.util.StringUtils;
|
||||
import app.organicmaps.sdk.util.UiUtils;
|
||||
import com.google.android.material.textview.MaterialTextView;
|
||||
|
||||
@@ -21,6 +25,12 @@ public class FeatureCategoryAdapter extends RecyclerView.Adapter<RecyclerView.Vi
|
||||
private final FeatureCategoryFragment mFragment;
|
||||
private final FeatureCategory mSelectedCategory;
|
||||
|
||||
public interface FooterListener
|
||||
{
|
||||
void onNoteTextChanged(String newText);
|
||||
void onSendNoteClicked();
|
||||
}
|
||||
|
||||
public FeatureCategoryAdapter(@NonNull FeatureCategoryFragment host, @NonNull FeatureCategory[] categories,
|
||||
@Nullable FeatureCategory category)
|
||||
{
|
||||
@@ -57,7 +67,7 @@ public class FeatureCategoryAdapter extends RecyclerView.Adapter<RecyclerView.Vi
|
||||
case TYPE_FOOTER ->
|
||||
{
|
||||
return new FooterViewHolder(
|
||||
LayoutInflater.from(parent.getContext()).inflate(R.layout.item_feature_category_footer, parent, false));
|
||||
LayoutInflater.from(parent.getContext()).inflate(R.layout.item_feature_category_footer, parent, false), (FooterListener) mFragment);
|
||||
}
|
||||
default -> throw new IllegalArgumentException("Unsupported");
|
||||
}
|
||||
@@ -70,6 +80,10 @@ public class FeatureCategoryAdapter extends RecyclerView.Adapter<RecyclerView.Vi
|
||||
{
|
||||
((FeatureViewHolder) holder).bind(position);
|
||||
}
|
||||
else if (holder instanceof FooterViewHolder)
|
||||
{
|
||||
((FooterViewHolder) holder).bind(mFragment.getPendingNoteText());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -105,11 +119,36 @@ public class FeatureCategoryAdapter extends RecyclerView.Adapter<RecyclerView.Vi
|
||||
|
||||
protected static class FooterViewHolder extends RecyclerView.ViewHolder
|
||||
{
|
||||
FooterViewHolder(@NonNull View itemView)
|
||||
private final TextInputEditText mNoteEditText;
|
||||
private final View mSendNoteButton;
|
||||
|
||||
FooterViewHolder(@NonNull View itemView, @NonNull FooterListener listener)
|
||||
{
|
||||
super(itemView);
|
||||
MaterialTextView categoryUnsuitableText = itemView.findViewById(R.id.editor_category_unsuitable_text);
|
||||
categoryUnsuitableText.setMovementMethod(LinkMovementMethod.getInstance());
|
||||
mNoteEditText = itemView.findViewById(R.id.note_edit_text);
|
||||
mSendNoteButton = itemView.findViewById(R.id.send_note_button);
|
||||
mSendNoteButton.setOnClickListener(v -> listener.onSendNoteClicked());
|
||||
mNoteEditText.addTextChangedListener(new StringUtils.SimpleTextWatcher() {
|
||||
@Override
|
||||
public void onTextChanged(CharSequence s, int start, int before, int count)
|
||||
{
|
||||
final String str = s.toString();
|
||||
listener.onNoteTextChanged(str);
|
||||
mSendNoteButton.setEnabled(!str.trim().isEmpty());
|
||||
}
|
||||
});
|
||||
}
|
||||
public void bind(String pendingNoteText)
|
||||
{
|
||||
if (!mNoteEditText.getText().toString().equals(pendingNoteText))
|
||||
{
|
||||
mNoteEditText.setText(pendingNoteText);
|
||||
if (pendingNoteText != null)
|
||||
mNoteEditText.setSelection(pendingNoteText.length());
|
||||
}
|
||||
mSendNoteButton.setEnabled(pendingNoteText != null && !pendingNoteText.trim().isEmpty());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package app.organicmaps.editor;
|
||||
|
||||
import static app.organicmaps.sdk.util.Utils.getLocalizedFeatureType;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
@@ -9,21 +8,32 @@ import android.view.ViewGroup;
|
||||
import androidx.annotation.CallSuper;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import app.organicmaps.R;
|
||||
import app.organicmaps.base.BaseMwmRecyclerFragment;
|
||||
import app.organicmaps.MwmApplication;
|
||||
import app.organicmaps.sdk.editor.Editor;
|
||||
import app.organicmaps.sdk.editor.data.FeatureCategory;
|
||||
import app.organicmaps.sdk.util.Language;
|
||||
import app.organicmaps.sdk.editor.OsmOAuth;
|
||||
import com.google.android.material.dialog.MaterialAlertDialogBuilder;
|
||||
import android.text.TextUtils;
|
||||
import android.content.Intent;
|
||||
import android.widget.Toast;
|
||||
|
||||
import app.organicmaps.sdk.Framework;
|
||||
import app.organicmaps.R;
|
||||
import app.organicmaps.base.BaseMwmRecyclerFragment;
|
||||
import app.organicmaps.dialog.EditTextDialogFragment;
|
||||
import app.organicmaps.util.Utils;
|
||||
import app.organicmaps.widget.SearchToolbarController;
|
||||
import app.organicmaps.widget.ToolbarController;
|
||||
import java.util.Arrays;
|
||||
import java.util.Comparator;
|
||||
|
||||
public class FeatureCategoryFragment extends BaseMwmRecyclerFragment<FeatureCategoryAdapter>
|
||||
public class FeatureCategoryFragment extends BaseMwmRecyclerFragment<FeatureCategoryAdapter> implements FeatureCategoryAdapter.FooterListener
|
||||
{
|
||||
private FeatureCategory mSelectedCategory;
|
||||
protected ToolbarController mToolbarController;
|
||||
private static final String NOTE_CONFIRMATION_SHOWN = "NoteConfirmationAlertWasShown";
|
||||
private static String mPendingNoteText = "";
|
||||
|
||||
public interface FeatureCategoryListener
|
||||
{
|
||||
@@ -48,7 +58,8 @@ public class FeatureCategoryFragment extends BaseMwmRecyclerFragment<FeatureCate
|
||||
mSelectedCategory =
|
||||
Utils.getParcelable(args, FeatureCategoryActivity.EXTRA_FEATURE_CATEGORY, FeatureCategory.class);
|
||||
}
|
||||
mToolbarController = new SearchToolbarController(view, requireActivity()) {
|
||||
mToolbarController = new SearchToolbarController(view, requireActivity())
|
||||
{
|
||||
@Override
|
||||
protected void onTextChanged(String query)
|
||||
{
|
||||
@@ -104,4 +115,62 @@ public class FeatureCategoryFragment extends BaseMwmRecyclerFragment<FeatureCate
|
||||
else if (getParentFragment() instanceof FeatureCategoryListener)
|
||||
((FeatureCategoryListener) getParentFragment()).onFeatureCategorySelected(category);
|
||||
}
|
||||
|
||||
public String getPendingNoteText()
|
||||
{
|
||||
return mPendingNoteText;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onNoteTextChanged(String newText)
|
||||
{
|
||||
mPendingNoteText = newText;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSendNoteClicked()
|
||||
{
|
||||
if (!OsmOAuth.isAuthorized())
|
||||
{
|
||||
final Intent intent = new Intent(requireActivity(), OsmLoginActivity.class);
|
||||
startActivity(intent);
|
||||
return;
|
||||
}
|
||||
|
||||
final double[] center = Framework.nativeGetScreenRectCenter();
|
||||
final double lat = center[0];
|
||||
final double lon = center[1];
|
||||
|
||||
if (!MwmApplication.prefs(requireContext().getApplicationContext()).contains(NOTE_CONFIRMATION_SHOWN))
|
||||
{
|
||||
showNoteConfirmationDialog(lat, lon, mPendingNoteText);
|
||||
}
|
||||
else
|
||||
{
|
||||
Editor.nativeCreateStandaloneNote(lat, lon, mPendingNoteText);
|
||||
mPendingNoteText = "";
|
||||
Toast.makeText(requireContext(), R.string.osm_note_toast, Toast.LENGTH_SHORT).show();
|
||||
requireActivity().finish();
|
||||
}
|
||||
}
|
||||
|
||||
// Duplicate of showNoobDialog()
|
||||
private void showNoteConfirmationDialog(double lat, double lon, String noteText)
|
||||
{
|
||||
new MaterialAlertDialogBuilder(requireActivity(), R.style.MwmTheme_AlertDialog)
|
||||
.setTitle(R.string.editor_share_to_all_dialog_title)
|
||||
.setMessage(getString(R.string.editor_share_to_all_dialog_message_1)
|
||||
+ " " + getString(R.string.editor_share_to_all_dialog_message_2))
|
||||
.setPositiveButton(android.R.string.ok, (dlg, which) -> {
|
||||
MwmApplication.prefs(requireContext().getApplicationContext()).edit()
|
||||
.putBoolean(NOTE_CONFIRMATION_SHOWN, true)
|
||||
.apply();
|
||||
Editor.nativeCreateStandaloneNote(lat, lon, noteText);
|
||||
mPendingNoteText = "";
|
||||
Toast.makeText(requireContext(), R.string.osm_note_toast, Toast.LENGTH_SHORT).show();
|
||||
requireActivity().finish();
|
||||
})
|
||||
.setNegativeButton(R.string.cancel, null)
|
||||
.show();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user