Android Open Source - agendawatchfacePluginAPI Line Overflow Behavior






From Project

Back to project page agendawatchfacePluginAPI.

License

The source code is released under:

MIT License

If you think the Android project agendawatchfacePluginAPI listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package de.janbo.agendawatchface.api;
/*from   ww w .  j  av  a2  s.c  o  m*/
/**
 * Options for handling long texts
 * @author Jan
 *
 */
public enum LineOverflowBehavior {
  /**
   * The line always has the same height, regardless of what text is displayed
   */
  NONE,
  
  /**
   * For long texts, line height is increased
   */
  OVERFLOW_IF_NECESSARY,
  
  /**
   * The line always has twice the normal height, regardless of what text is displayed
   */
  ALWAYS_TWICE_THE_HEIGHT
}




Java Source Code List

de.janbo.agendawatchface.api.AgendaItem.java
de.janbo.agendawatchface.api.AgendaWatchfacePlugin.java
de.janbo.agendawatchface.api.LineOverflowBehavior.java
de.janbo.agendawatchface.api.PebbleFont.java
de.janbo.agendawatchface.api.TimeDisplayType.java