Android TextView выбор текста - PullRequest
       7

Android TextView выбор текста

0 голосов
/ 16 ноября 2018

Есть ли API для установки начального и конечного выбора (индекса) в textview, чтобы он мог вызывать CustomSelectionActionMode?

Согласно документации, класс Selection имеет функцию SetSelection, которая принимает 3 аргумента: spannable, start и end. Но как мне извлечь класс Selection из класса TextView?

Ответы [ 2 ]

0 голосов
/ 16 ноября 2018
bool LongPress()
{
    if (longpressed == 1)
    {
    int x = (int)downX;
    int y = (int)downY;
    x -= textview.PaddingLeft;
    y -= textview.PaddingTop;
    x += textview.ScrollX;
    y += textview.ScrollY;
    Android.Text.Layout layout = textview.Layout;
    int line = layout.GetLineForVertical(y);
    int off = layout.GetOffsetForHorizontal(line, x);
    var clickspans = ss.GetSpans(off, off, Java.Lang.Class.FromType(typeof(ClickableSpan)));
    if (clickspans.Count() > 0)
    {
        ClickableSpan clickspan = (ClickableSpan)clickspans[0];
        startselection = ss.GetSpanStart(clickspan);
        endselection = ss.GetSpanEnd(clickspan);
        /*
        This is where I intend to add Selection.SetSelection(ss, startselection, endselection);
        */
        //textview.StartActionMode(textview.CustomSelectionActionModeCallback, ActionModeType.Floating);
    }
    longpressed = 2;
    }
    return false;
}

private void TouchLabel(object sender, TouchEventArgs e)
{
    MotionEvent motionevt = e.Event;
    if (MotionEvent.ActionToString(motionevt.Action) == "ACTION_DOWN")
    {
    Device.StartTimer(TimeSpan.FromMilliseconds(500), LongPress);
    longpressed = 1;
    }
    else if (MotionEvent.ActionToString(motionevt.Action) == "ACTION_MOVE")
    {
    longpressed = 2;
    }
    else if ((MotionEvent.ActionToString(motionevt.Action) == "ACTION_UP") || (MotionEvent.ActionToString(motionevt.Action) == "ACTION_CANCEL"))
    {
    if (longpressed == 1)
    {
        longpressed = 2;
    }
    longpressed = 0;
    }
}

Это написано на C # для Xamarin.Android. Я использую таймер для обнаружения «LongPress» и хотел бы установить «выбранный / выделенный» внутри функции LongPress.

0 голосов
/ 16 ноября 2018

Вот ответ,

https://stackoverflow.com/a/22833303/1177865

mTextView.setCustomSelectionActionModeCallback(new Callback() {

    @Override
    public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
        // Remove the "select all" option
        menu.removeItem(android.R.id.selectAll);
        // Remove the "cut" option
        menu.removeItem(android.R.id.cut);
        // Remove the "copy all" option
        menu.removeItem(android.R.id.copy);
        return true;
    }

    @Override
    public boolean onCreateActionMode(ActionMode mode, Menu menu) {
        // Called when action mode is first created. The menu supplied
        // will be used to generate action buttons for the action mode

        // Here is an example MenuItem
        menu.add(0, DEFINITION, 0, "Definition").setIcon(R.drawable.ic_action_book);
        return true;
    }

    @Override
    public void onDestroyActionMode(ActionMode mode) {
        // Called when an action mode is about to be exited and
        // destroyed
    }

    @Override
    public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
        switch (item.getItemId()) {
            case DEFINITION:
                int min = 0;
                int max = mTextView.getText().length();
                if (mTextView.isFocused()) {
                    final int selStart = mTextView.getSelectionStart();
                    final int selEnd = mTextView.getSelectionEnd();

                    min = Math.max(0, Math.min(selStart, selEnd));
                    max = Math.max(0, Math.max(selStart, selEnd));
                }
                // Perform your definition lookup with the selected text
                final CharSequence selectedText = mTextView.getText().subSequence(min, max);
                // Finish and close the ActionMode
                mode.finish();
                return true;
            default:
                break;
        }
        return false;
    }

});
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...