diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-04-16 21:49:29 +0200 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-04-16 21:49:29 +0200 |
commit | f7c243564f87d60df322ea9f62c1591920f8d32b (patch) | |
tree | 39d8554ccb83722843ced80297ec3e09aece00dd /libraries/HtmlTextView/README.md | |
parent | b0c65729a98dfbd61063491a5facff2f782f56af (diff) | |
download | open-keychain-f7c243564f87d60df322ea9f62c1591920f8d32b.tar.gz open-keychain-f7c243564f87d60df322ea9f62c1591920f8d32b.tar.bz2 open-keychain-f7c243564f87d60df322ea9f62c1591920f8d32b.zip |
Use git submodules for libs, fix compilation, remove library sourcecode
Diffstat (limited to 'libraries/HtmlTextView/README.md')
-rw-r--r-- | libraries/HtmlTextView/README.md | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/libraries/HtmlTextView/README.md b/libraries/HtmlTextView/README.md deleted file mode 100644 index 05714f79c..000000000 --- a/libraries/HtmlTextView/README.md +++ /dev/null @@ -1,45 +0,0 @@ -# HtmlTextView for Android - -This HtmlTextView supports all HTML tags supported by Android's Html class (see [The CommonsBlog](http://commonsware.com/blog/Android/2010/05/26/html-tags-supported-by-textview.html) and [history of Html class](https://github.com/android/platform_frameworks_base/commits/master/core/java/android/text/Html.java) for newer additions). -Additionally, list tags are supported (``<ul>``, ``<ol>``, ``<dd>``) and code tags with ``<code>``. - -This also includes a workaround to prevent TextView crashing on [specific Android versions](http://code.google.com/p/android/issues/detail?id=35466). - -This library is kept very tiny with no external dependencies. -I am using it to provide Help/About Activities in my apps. - -## Example - -``` -HtmlTextView text = new HtmlTextView(this); - -// loads html from string -text.setHtmlFromString("<b>Hello</b><ul><li>world</li><li>cats</li></ul>"); -``` -or -``` -HtmlTextView text = new HtmlTextView(this); - -// loads html from raw resource, i.e., a html file in res/raw/, this allows translatable resource (e.g., res/raw-de/ for german) -text.setHtmlFromRawResource(this, R.raw.help); -``` - -## Use library as Gradle dependency (Android library project) - -1. Copy this folder to your project and include it in ``settings.gradle`` with ``include ':html-textview'`` -2. Add dependency ``compile project(':html-textview')`` to your project's ``build.gradle``. - -## License - -Apache License v2 - -## Authors -- This library was hacked together by Dominik Schürmann -- Original [TagHandler](https://gist.github.com/mlakkadshaw/5983704) developed by [Mohammed Lakkadshaw](http://blog.mohammedlakkadshaw.com/) -- Original [UrlImageGetter](https://gist.github.com/Antarix/4167655) developed by Antarix Tandon -- [JellyBeanSpanFixTextView](https://gist.github.com/pyricau/3424004) (with fix from comment) developed by Pierre-Yves Ricau - -## Contributions - -Feel free to fork and do pull requests. I am more than happy to merge them. -Please do not introduce external dependencies.
\ No newline at end of file |