Android Open Source - QCircle-Design-Template Template Type






From Project

Back to project page QCircle-Design-Template.

License

The source code is released under:

QCircle Design Template Library Project Contributor License Agreement By making a contribution to this QCircle Design Template Library Project (??Project??), I accept and agree to the following term...

If you think the Android project QCircle-Design-Template 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 com.lge.qcircle.template;
//from   w w w  .  j a v  a 2s  . co  m
/**
 * The {@code TemplateType} enumeration defines constants for design templates which are supported by {@link QCircleTemplate}.  <P>
 * Use the constant when you set the circle template using {@link QCircleTemplate#QCircleTemplate(android.content.Context, com.lge.qcircle.template.TemplateType)}.
 * @author jeongeun.jeon
 * @see QCircleTemplate
 *
 */
public enum TemplateType {
  /**
   * empty template. <P> It just has empty main content and can has a title or a back button if you want.
   */
  CIRCLE_EMPTY,
  /**
   * template including a content and a vertical sidebar. <P> It can has a title or a back button if you want.
   */
  CIRCLE_VERTICAL,
  /**
   * template including a content and a horizontal sidebar. <P> It can has a title or a back button if you want.
   */
  CIRCLE_HORIZONTAL,
  /**
   * template including a content and two topbars.<P> It can has a title or a back button if you want.
   */
  CIRCLE_COMPLEX,
  /**
   * tmeplate including a content and two sidebars. The sidebars are on the left side and right side of the content. <P> It can has a title or a back button if you want.
   */
  CIRCLE_SIDEBAR
}




Java Source Code List

com.lge.qcircle.template.QCircleBackButton.java
com.lge.qcircle.template.QCircleDialog.java
com.lge.qcircle.template.QCircleTemplate.java
com.lge.qcircle.template.QCircleTitle.java
com.lge.qcircle.template.TemplateTag.java
com.lge.qcircle.template.TemplateType.java
com.lge.qcircle.template.sample.SimpleCircle.FullActivity.java
com.lge.qcircle.template.sample.SimpleCircle.MainActivity.java
com.lge.qcircle.template.sample.beanbirdInCircle.QCircleActivity.java