• Stars
    star
    592
  • Rank 75,570 (Top 2 %)
  • Language
    Java
  • Created almost 9 years ago
  • Updated about 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

This is a library designed for highlighting hashtags ("#example") and catching click on them.

HashTagHelper

This is a library designed for highlighting hashtags ("#example") and catching click on them.

Android_weekly Android Arsenal

#Usage Add this snippet to your project build.gradle file:

buildscript {
    repositories {
        jcenter()
    }
}

Add this snippet to your module build.gradle file:

dependencies {
    compile 'com.github.danylovolokh:hashtag-helper:1.1.0'
}

Getting click events and highligthing hashtags.

private HashTagHelper mTextHashTagHelper;

private TextView mHashTagText;

@Override
protected void onCreate(Bundle savedInstanceState) {

  mHashTagText = (TextView) findViewById(R.id.text);
  mTextHashTagHelper = HashTagHelper.Creator.create(getResources().getColor(R.color.colorPrimary), new HashTagHelper.OnHashTagClickListener() {
    @Override
    public void onHashTagClicked(String hashTag) {
        
    }
  });
        
  // pass a TextView or any descendant of it (incliding EditText) here.
  // Hash tags that are in the text will be hightlighed with a color passed to HasTagHelper
  mTextHashTagHelper.handle(mHashTagText);
}

Highlighting without click events. Just set "null" instead of HashTagHelper.OnHashTagClickListener;

mTextHashTagHelper = HashTagHelper.Creator.create(getResources().getColor(R.color.colorPrimary), null);
mTextHashTagHelper.handle(mHashTagText);

By default only digits and letters are valid symbols for hashtag To add support of custom symbols like '_' or '-' you need to specify another parameter when creating HashTagHelper

char[] additionalSymbols = new char[]{
                '_',
                '$'
        };
// If you set additional symbols not only letters and digits will be a valid symbols for hashtag
// Example: "hash_tag_with_underscore_and$dolar$sign$is$also$valid_hashtag"
mTextHashTagHelper = HashTagHelper.Creator.create(getResources().getColor(R.color.colorPrimary), null, additionalSymbols);
mTextHashTagHelper.handle(mHashTagText);

To get all hashtags from text.

// get all hashtags with "#", example: "#blueeyes"
List<String> allHashTags = mTextHashTagHelper.getAllHashTags(true);

// get all hashtags without "#", example: "blueeyes"
List<String> allHashTags = mTextHashTagHelper.getAllHashTags(false);

#Demo alt tag alt tag

License

Copyright 2015 Danylo Volokh

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

More Repositories

1

VideoPlayerManager

This is a project designed to help controlling Android MediaPlayer class. It makes it easier to use MediaPlayer ListView and RecyclerView. Also it tracks the most visible item in scrolling list. When new item in the list become the most visible, this library gives an API to track it.
Java
3,149
star
2

LondonEyeLayoutManager

A Layoutmanager that must be used with RecyclerView. When list is scrolled views are moved by circular trajectory
Java
1,195
star
3

ImageTransition

This is a pet project that shows how to implement shared element image transition between activities on pre-Lollipop devices on Android.
Java
318
star
4

MidPointCircleExplained

This is a project that helps to understand how "Mid Point Circle" algorithm works and how it is modified for LondonEyeLayoutManager project
Java
23
star
5

AndroidLogger

This is a lightweight Logger to file for Android. It's based on VoNaLogger.
Java
13
star
6

TestAsyncrounousAndroid

This is a project that descirbes how easily we can test asynchronous actions in Android
Java
7
star
7

PermissionsReference

The purpose of this project is to create an exhaustive reference of methods that developers have to take into account while implementing Runtime Permissions in Android Marshmallow and higher.
Java
7
star
8

Setup-Free-Bitbucket-Cloud-CI

How to setup a Free CI for Android project based on bitbucket cloud pipelines
Java
6
star
9

DiagonalLayoutManager

The layout manager that lays out views from top-left to bottom-right
Java
6
star
10

VoNaLogger

This is a lightweight Logger written in pure Java.
Java
4
star
11

AlgorithmsAnalysis

Coursera by Tim Roughgarden
Kotlin
2
star