Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/burgessjp/GetWordTextView

A TextView that can get word in it's content by click.(一个可以取词的TextView)
https://github.com/burgessjp/GetWordTextView

Last synced: 1 day ago
JSON representation

A TextView that can get word in it's content by click.(一个可以取词的TextView)

Lists

README

        

##GetWordTextView

A TextView that can get word in it's content by click,and you can set HighlightText also.
(Support English and Chinese)

![](capture/capture.gif)

##Usage

###Add GetWordTextView to your layout:
```html

```
- highlightText:HighlightText
- highlightColor:HighlightText'color
- selectedColor:Clicked word's background
- language:Content's language

###Set Text and Listener in your code
```html
mEnglishGetWordTextView = (GetWordTextView) findViewById(R.id.english_get_word_text_view);
mEnglishGetWordTextView.setText("A view that can get every word inside,it's very helpful view!");
mEnglishGetWordTextView.setOnWordClickListener(new GetWordTextView.OnWordClickListener() {
@Override
public void onClick(String word) {
showToast(word);
}
});
```

##TODO
Mixed support for English and Chinese

##Contact & Help

- blog: http://www.jianshu.com/users/6725c8e8194f
- weibo: http://weibo.com/xljiepeng
- email: [email protected]

##License
```html
Copyright (C) 2016 [_SOLID](https://github.com/burgessjp)

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.
```