AwesomeText


Source link: https://github.com/JMPergar/AwesomeText

AwesomeText

Working with Spans is ugly and difficult to manage, it's like working with a goblin of Moria. Don't understand the Spans? With AwesomeText you will only have to work with the classic Adapter Pattern. All the ease and potential of a pattern you already know how to use.

Screenshots

Download

Download via Gradle:

 dependencies {

compile 'com.jmpergar:AwesomeText:1.0.0'
  
}

Or via Maven:

 <dependency>

<groupId>com.jmpergar</groupId>

<artifactId>AwesomeText</artifactId>

<version>1.0.0</version>

<type>aar</type>
  </dependency>

Usage

On the same way that you working with ListAdapter, you must implement an interface to delegate the creation of the view, in this case AwesomeTextHandler.ViewSpanRenderer interface. The method getView is the responsible of this.

 public class HashtagsSpanRenderer implements AwesomeTextHandler.ViewSpanRenderer {

 @Override

public View getView(String text, Context context) {

 LayoutInflater inflater = LayoutInflater.from(context);

 TextView hashtagView = inflater.inflate(R.layout.hashtag);

 hashtagView.setText(text);

 return hashtagView;

}

  
}

If you want to manage click events only must to implement AwesomeTextHandler.ViewSpanClickListener.

 public class MentionSpanRenderer implements AwesomeTextHandler.ViewSpanRenderer, AwesomeTextHandler.ViewSpanClickListener {

 @Override

public View getView(String text, Context context) {

 LayoutInflater inflater = LayoutInflater.from(context);

 TextView mentionView = inflater.inflate(R.layout.mention);

 mentionView.setText(text);

 return mentionView;

}

 @Override

public void onClick(String text, Context context) {

 Toast.makeText(context, "Hello " + text, Toast.LENGTH_SHORT).show();

}

  
}

And finally you configure AwesomeTextHandler to view the changes. Now, when you call AwesomeTextHandler.setText the change will be rendered automatically.

 public class MainActivity extends ActionBarActivity {

  private static final String HASHTAG_PATTERN = "(#[\\p{
L
}
0-9-_]+)";

private static final String MENTION_PATTERN = "(@[\\p{
L
}
0-9-_]+)";

 @Override

protected void onCreate(Bundle savedInstanceState) {

 super.onCreate(savedInstanceState);

 setContentView(R.layout.activity_main);

  TextView textView = (TextView) findViewById(R.id.textview);

 EditText editText = (EditText) findViewById(R.id.editText);

  AwesomeTextHandler awesomeTextViewHandler = new AwesomeTextHandler();

 awesomeTextViewHandler

  .addViewSpanRenderer(HASHTAG_PATTERN, new HashtagsSpanRenderer())

  .addViewSpanRenderer(MENTION_PATTERN, new MentionSpanRenderer())

  .setView(textView);

  AwesomeTextHandler awesomeEditTextHandler = new AwesomeTextHandler();

 awesomeEditTextHandler

  .addViewSpanRenderer(HASHTAG_PATTERN, new HashtagsSpanRenderer())

  .addViewSpanRenderer(MENTION_PATTERN, new MentionSpanRenderer())

  .setView(editText);

}

  
}

Developed By

Who's using it

Does your app use AwesomeText? If you want to be featured on this list drop me a line.

Contributors

License

Copyright 2015 José Manuel Pereira García  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. 

Resources

Android library that helps to construct and launch system tray notifications from FCM Notification messages received when the app is in foreground mimicking the default format and behavior applied when the app is background.

Horizontal Calendar is a material horizontal calendar view for Android based on RecyclerView.

Page Indicator for Android ViewPager with a lot of animations and very original graphics, that uses an ellipses to dispose indication spots, and can draw a hand, like in old elevators.

Bored of the usual small points or stressed by the space occupied by a tab bar? Try this elevator-like elegant and original page indicator! A fully customizable super-easy Page Indicator, with stunning animations and very original and discreet graphics, for Android. Needs a very small screen, perfect when many pages need to be shown and reached in a small time.

A simple easy-to-integrate Camera Fragment for Android.

CameraFragment preview directly the camera view, and provides a easy API to capture or manage the device.

You can setup your own layout and control the camera using CameraFragment.

Another approach to create NavigationDrawer with Material concepts.

async-expandable-list contains 2 View classes: CollectionView and AsyncExpandableListView.

AsyncExpandableListView displays a list of headers and loads a sub-list under a header when a header item is clicked. The loading of sub-items can be done asynchronously and there are callbacks to populate the data into the list when it's done loading.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes