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: 3 months ago
JSON representation
A TextView that can get word in it's content by click.(一个可以取词的TextView)
- Host: GitHub
- URL: https://github.com/burgessjp/GetWordTextView
- Owner: burgessjp
- Created: 2016-11-09T09:38:04.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-06T03:22:24.000Z (over 6 years ago)
- Last Synced: 2024-06-16T05:42:47.979Z (5 months ago)
- Language: Java
- Homepage:
- Size: 123 KB
- Stars: 208
- Watchers: 5
- Forks: 33
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-github-android-ui - GetWordTextView - 通过点击获得词语 (TextView)
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 athttp://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.
```