Search in sources :

Example 1 with Rfc822Tokenizer

use of android.text.util.Rfc822Tokenizer in project android_frameworks_base by ParanoidAndroid.

the class TextUtilsTest method testRfc822FindToken.

@SmallTest
public void testRfc822FindToken() {
    Rfc822Tokenizer tokenizer = new Rfc822Tokenizer();
    //                0           1         2           3         4
    //                0 1234 56789012345678901234 5678 90123456789012345
    String address = "\"Foo\" <foo@google.com>, \"Bar\" <bar@google.com>";
    assertEquals(0, tokenizer.findTokenStart(address, 21));
    assertEquals(22, tokenizer.findTokenEnd(address, 21));
    assertEquals(24, tokenizer.findTokenStart(address, 25));
    assertEquals(46, tokenizer.findTokenEnd(address, 25));
}
Also used : Rfc822Tokenizer(android.text.util.Rfc822Tokenizer) SmallTest(android.test.suitebuilder.annotation.SmallTest)

Example 2 with Rfc822Tokenizer

use of android.text.util.Rfc822Tokenizer in project android_frameworks_base by DirtyUnicorns.

the class TextUtilsTest method testRfc822FindToken.

@SmallTest
public void testRfc822FindToken() {
    Rfc822Tokenizer tokenizer = new Rfc822Tokenizer();
    //                0           1         2           3         4
    //                0 1234 56789012345678901234 5678 90123456789012345
    String address = "\"Foo\" <foo@google.com>, \"Bar\" <bar@google.com>";
    assertEquals(0, tokenizer.findTokenStart(address, 21));
    assertEquals(22, tokenizer.findTokenEnd(address, 21));
    assertEquals(24, tokenizer.findTokenStart(address, 25));
    assertEquals(46, tokenizer.findTokenEnd(address, 25));
}
Also used : Rfc822Tokenizer(android.text.util.Rfc822Tokenizer) SmallTest(android.test.suitebuilder.annotation.SmallTest)

Example 3 with Rfc822Tokenizer

use of android.text.util.Rfc822Tokenizer in project platform_frameworks_base by android.

the class TextUtilsTest method testRfc822FindToken.

@SmallTest
public void testRfc822FindToken() {
    Rfc822Tokenizer tokenizer = new Rfc822Tokenizer();
    //                0           1         2           3         4
    //                0 1234 56789012345678901234 5678 90123456789012345
    String address = "\"Foo\" <foo@google.com>, \"Bar\" <bar@google.com>";
    assertEquals(0, tokenizer.findTokenStart(address, 21));
    assertEquals(22, tokenizer.findTokenEnd(address, 21));
    assertEquals(24, tokenizer.findTokenStart(address, 25));
    assertEquals(46, tokenizer.findTokenEnd(address, 25));
}
Also used : Rfc822Tokenizer(android.text.util.Rfc822Tokenizer) SmallTest(android.test.suitebuilder.annotation.SmallTest)

Example 4 with Rfc822Tokenizer

use of android.text.util.Rfc822Tokenizer in project android_frameworks_base by crdroidandroid.

the class TextUtilsTest method testRfc822FindToken.

@SmallTest
public void testRfc822FindToken() {
    Rfc822Tokenizer tokenizer = new Rfc822Tokenizer();
    //                0           1         2           3         4
    //                0 1234 56789012345678901234 5678 90123456789012345
    String address = "\"Foo\" <foo@google.com>, \"Bar\" <bar@google.com>";
    assertEquals(0, tokenizer.findTokenStart(address, 21));
    assertEquals(22, tokenizer.findTokenEnd(address, 21));
    assertEquals(24, tokenizer.findTokenStart(address, 25));
    assertEquals(46, tokenizer.findTokenEnd(address, 25));
}
Also used : Rfc822Tokenizer(android.text.util.Rfc822Tokenizer) SmallTest(android.test.suitebuilder.annotation.SmallTest)

Example 5 with Rfc822Tokenizer

use of android.text.util.Rfc822Tokenizer in project instructure-android by instructure.

the class AddMessageFragment method onReadySetGo.

@Override
protected void onReadySetGo(AddMessagePresenter presenter) {
    setupToolbar();
    // Set conversation subject
    if (!isNewMessage && !mIsMessageStudentsWho) {
        mSubject.setText(presenter.getConversation().getSubject());
    } else if (mIsMessageStudentsWho) {
        if (mIsPersonalMessage) {
            mSubject.setVisibility(View.GONE);
            mEditSubject.setVisibility(View.VISIBLE);
            mEditSubject.setText(getArguments().getString(MESSAGE_STUDENTS_WHO_SUBJECT));
        } else {
            mSubject.setText(getArguments().getString(MESSAGE_STUDENTS_WHO_SUBJECT));
        }
    }
    // Set up recipients view
    mChipsTextView.setTokenizer(new Rfc822Tokenizer());
    if (mChipsAdapter == null) {
        mChipsAdapter = new RecipientAdapter(getContext());
    }
    if (mChipsTextView.getAdapter() == null) {
        mChipsTextView.setAdapter(mChipsAdapter);
    }
    if (getPresenter().getCourse().getId() != 0) {
        mChipsAdapter.getCanvasRecipientManager().setCanvasContext(getPresenter().getCourse());
    } else if (mSelectedCourse != null) {
        courseWasSelected();
        mChipsAdapter.getCanvasRecipientManager().setCanvasContext(mSelectedCourse);
    }
    ColorUtils.colorIt(ThemePrefs.getButtonColor(), mContactsButton);
    // don't show the contacts button if there is no selected course and there is no context_code from the conversation (shouldn't happen, but it does)
    if (mSelectedCourse == null && getPresenter().getCourse() != null && getPresenter().getCourse().getId() == 0) {
        mContactsButton.setVisibility(View.INVISIBLE);
    }
    mContactsButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            CanvasContext canvasContext;
            if (getPresenter().getCourse() != null && getPresenter().getCourse().getId() == 0) {
                // presenter doesn't know what the course is, use the mSelectedCourse instead
                canvasContext = mSelectedCourse;
            } else {
                canvasContext = getPresenter().getCourse();
            }
            RouteMatcher.route(getContext(), new Route(ChooseRecipientsFragment.class, canvasContext, ChooseRecipientsFragment.createBundle(canvasContext, getRecipientsFromRecipientEntries())));
        }
    });
    // Ensure attachments are up to date
    refreshAttachments();
    // get courses and groups if this is a new compose message
    if (isNewMessage) {
        getPresenter().getAllCoursesAndGroups(true);
    }
}
Also used : Rfc822Tokenizer(android.text.util.Rfc822Tokenizer) RecipientAdapter(com.instructure.teacher.adapters.RecipientAdapter) CanvasContext(com.instructure.canvasapi2.models.CanvasContext) ImageView(android.widget.ImageView) BindView(butterknife.BindView) View(android.view.View) AdapterView(android.widget.AdapterView) RecipientEditTextView(com.android.ex.chips.RecipientEditTextView) TextView(android.widget.TextView) AddMessageView(com.instructure.teacher.viewinterface.AddMessageView) AttachmentView(com.instructure.pandautils.views.AttachmentView) ScrollView(android.widget.ScrollView) Route(com.instructure.interactions.router.Route)

Aggregations

Rfc822Tokenizer (android.text.util.Rfc822Tokenizer)10 SmallTest (android.test.suitebuilder.annotation.SmallTest)7 RecipientAdapter (com.instructure.teacher.adapters.RecipientAdapter)2 View (android.view.View)1 AdapterView (android.widget.AdapterView)1 ImageView (android.widget.ImageView)1 ScrollView (android.widget.ScrollView)1 TextView (android.widget.TextView)1 BindView (butterknife.BindView)1 EmailAddressAdapter (com.android.calendar.EmailAddressAdapter)1 RecipientAdapter (com.android.calendar.RecipientAdapter)1 BaseRecipientAdapter (com.android.ex.chips.BaseRecipientAdapter)1 RecipientEditTextView (com.android.ex.chips.RecipientEditTextView)1 RecipientEntry (com.android.ex.chips.RecipientEntry)1 CanvasContext (com.instructure.canvasapi2.models.CanvasContext)1 Recipient (com.instructure.canvasapi2.models.Recipient)1 Route (com.instructure.interactions.router.Route)1 AttachmentView (com.instructure.pandautils.views.AttachmentView)1 AddMessageView (com.instructure.teacher.viewinterface.AddMessageView)1