一個支持選詞的 TextView,類似與單詞 app 中點擊單詞翻譯的效果
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
- blog: http://www.jianshu.com/users/6725c8e8194f
- weibo: http://weibo.com/xljiepeng
- email: jiapeng1818@163.com
License
Copyright (C) 2016 _SOLID
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.</code></pre>
本文由用戶 qtmv9972 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!