XunMengWinter / GetWordTextView

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

##GetWordTextView

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

##Usage

###Add GetWordTextView to your layout:

  <me.solidev.library.GetWordTextView xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/english_get_word_text_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="16sp"
        app:highlightColor="@color/colorAccent"
        app:highlightText="that"
        app:language="English"
        app:selectedColor="@color/colorPrimary" />
  • highlightText:HighlightText
  • highlightColor:HighlightText'color
  • selectedColor:Clicked word's background
  • language:Content's language

###Set Text and Listener in your code

        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

##License

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.

About

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


Languages

Language:Java 100.0%