Search in sources :

Example 1 with DrawerMenuItemsSettings

use of net.osmand.plus.settings.backend.menuitems.DrawerMenuItemsSettings in project Osmand by osmandapp.

the class ConfigureMenuItemsFragment method onCreateView.

@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable final ViewGroup container, @Nullable Bundle savedInstanceState) {
    Context ctx = requireContext();
    View root = mInflater.inflate(R.layout.edit_arrangement_list_fragment, container, false);
    AppBarLayout appbar = root.findViewById(R.id.appbar);
    View toolbar = mInflater.inflate(R.layout.global_preference_toolbar, container, false);
    TextView toolbarTitle = toolbar.findViewById(R.id.toolbar_title);
    ImageButton toolbarButton = toolbar.findViewById(R.id.close_button);
    toolbar.setBackgroundColor(ColorUtilities.getListBgColor(ctx, nightMode));
    toolbarTitle.setTextColor(nightMode ? getResources().getColor(R.color.text_color_primary_dark) : getResources().getColor(R.color.list_background_color_dark));
    toolbarButton.setImageDrawable(getPaintedContentIcon(AndroidUtils.getNavigationIconResId(app), getResources().getColor(R.color.text_color_secondary_light)));
    toolbarTitle.setText(screenType.titleRes);
    toolbarButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View view) {
            exitFragment();
        }
    });
    appbar.addView(toolbar);
    recyclerView = root.findViewById(R.id.profiles_list);
    View cancelButton = root.findViewById(R.id.dismiss_button);
    root.findViewById(R.id.buttons_divider).setVisibility(View.VISIBLE);
    UiUtilities.setupDialogButton(nightMode, cancelButton, UiUtilities.DialogButtonType.SECONDARY, R.string.shared_string_cancel);
    View applyButton = root.findViewById(R.id.right_bottom_button);
    cancelButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            FragmentActivity fragmentActivity = getActivity();
            if (fragmentActivity != null) {
                fragmentActivity.onBackPressed();
            }
        }
    });
    UiUtilities.setupDialogButton(nightMode, applyButton, UiUtilities.DialogButtonType.PRIMARY, R.string.shared_string_apply);
    applyButton.setVisibility(View.VISIBLE);
    applyButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            List<ContextMenuItem> defItems = getCustomizableDefaultItems(contextMenuAdapter.getDefaultItems());
            List<String> ids = new ArrayList<>();
            if (!menuItemsOrder.isEmpty()) {
                sortByCustomOrder(defItems, menuItemsOrder);
                for (ContextMenuItem item : defItems) {
                    ids.add(item.getId());
                }
            }
            FragmentManager fm = getFragmentManager();
            final ContextMenuItemsSettings prefToSave;
            if (screenType == ScreenType.DRAWER) {
                prefToSave = new DrawerMenuItemsSettings(hiddenMenuItems, ids);
            } else if (screenType == ScreenType.CONTEXT_MENU_ACTIONS) {
                prefToSave = new MainContextMenuItemsSettings(mainActionItems, hiddenMenuItems, ids);
            } else {
                prefToSave = new ContextMenuItemsSettings(hiddenMenuItems, ids);
            }
            if (fm != null) {
                ChangeGeneralProfilesPrefBottomSheet.showInstance(fm, getSettingForScreen().getId(), prefToSave, getTargetFragment(), false, R.string.back_to_editing, appMode, new ChangeGeneralProfilesPrefBottomSheet.OnChangeSettingListener() {

                    @Override
                    public void onApplied(boolean profileOnly) {
                        dismissFragment();
                    }

                    @Override
                    public void onDiscard() {
                    }
                });
            }
        }
    });
    if (Build.VERSION.SDK_INT >= 21) {
        AndroidUtils.addStatusBarPadding21v(app, root);
    }
    return root;
}
Also used : Context(android.content.Context) ContextMenuItem(net.osmand.plus.ContextMenuItem) DrawerMenuItemsSettings(net.osmand.plus.settings.backend.menuitems.DrawerMenuItemsSettings) View(android.view.View) RecyclerView(androidx.recyclerview.widget.RecyclerView) TextView(android.widget.TextView) FragmentManager(androidx.fragment.app.FragmentManager) FragmentActivity(androidx.fragment.app.FragmentActivity) ImageButton(android.widget.ImageButton) MainContextMenuItemsSettings(net.osmand.plus.settings.backend.menuitems.MainContextMenuItemsSettings) ContextMenuItemsSettings(net.osmand.plus.settings.backend.menuitems.ContextMenuItemsSettings) MainContextMenuItemsSettings(net.osmand.plus.settings.backend.menuitems.MainContextMenuItemsSettings) TextView(android.widget.TextView) List(java.util.List) ArrayList(java.util.ArrayList) AppBarLayout(com.google.android.material.appbar.AppBarLayout) Nullable(androidx.annotation.Nullable)

Aggregations

Context (android.content.Context)1 View (android.view.View)1 ImageButton (android.widget.ImageButton)1 TextView (android.widget.TextView)1 Nullable (androidx.annotation.Nullable)1 FragmentActivity (androidx.fragment.app.FragmentActivity)1 FragmentManager (androidx.fragment.app.FragmentManager)1 RecyclerView (androidx.recyclerview.widget.RecyclerView)1 AppBarLayout (com.google.android.material.appbar.AppBarLayout)1 ArrayList (java.util.ArrayList)1 List (java.util.List)1 ContextMenuItem (net.osmand.plus.ContextMenuItem)1 ContextMenuItemsSettings (net.osmand.plus.settings.backend.menuitems.ContextMenuItemsSettings)1 DrawerMenuItemsSettings (net.osmand.plus.settings.backend.menuitems.DrawerMenuItemsSettings)1 MainContextMenuItemsSettings (net.osmand.plus.settings.backend.menuitems.MainContextMenuItemsSettings)1