Skip to content

bitjjj/SocialTokenAutoComplete

Repository files navigation

SocialTokenAutoComplete

In social app, you often @somebody for something. This project gives you a more visual way to @somebody and show the message.

This project is modified from https://github.com/splitwise/TokenAutoComplete and is compitable with TokenAutoComplete. You can see a demo in SocialTokenActivity. If you need update some styles, you can easily modify these xml files in layout folder.

demo

An Example:

public class SocialTokenActivity extends Activity {
    SocialContactsCompletionView completionView;
    Contact[] people;
    ArrayAdapter<Contact> adapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_demo);

        people = new Contact[]{
                new Contact("Marshall Weir", "[email protected]",R.drawable.author0),
                new Contact("Margaret Smith", "[email protected]",R.drawable.author1),
                new Contact("Max Jordan", "[email protected]",R.drawable.author2),
                new Contact("Meg Peterson", "[email protected]",R.drawable.author3),
                new Contact("Amanda Johnson", "[email protected]",R.drawable.author4),
                new Contact("Terry Anderson", "[email protected]",R.drawable.author0)
        };

        adapter = new FilteredArrayAdapter<Contact>(this, R.layout.contact_layout, people) {
            @Override
            public View getView(int position, View convertView, ViewGroup parent) {
                if (convertView == null) {

                    LayoutInflater l = (LayoutInflater)getContext().getSystemService(Activity.LAYOUT_INFLATER_SERVICE);
                    convertView = (View)l.inflate(R.layout.contact_layout, parent, false);
                }

                Contact p = getItem(position);
                ((TextView)convertView.findViewById(R.id.name)).setText(p.getName());
                ((ImageView)convertView.findViewById(R.id.icon_image)).setBackgroundResource(p.getIcon());
                ((TextView)convertView.findViewById(R.id.email)).setText(p.getEmail());

                return convertView;
            }

            @Override
            protected boolean keepObject(Contact obj, String mask) {
                mask = mask.toLowerCase(Locale.getDefault());

                return mask.contains("@") && obj.getName().toLowerCase(Locale.getDefault()).startsWith(mask.substring(mask.lastIndexOf("@")+1));
            }
        };

        completionView = (SocialContactsCompletionView)findViewById(R.id.searchView);
        completionView.setAdapter(adapter);
        
    }
   
}

Demo

Demo

Android Arsenal

Releases

No releases published

Packages

No packages published

Languages