Android Open Source - QCircle-Design-Template Template Tag






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;
//ww w .j a  va2 s .  com
/**
 * The {@code TemplateTag} class provides IDs of content views which are on the circle.<P>
 * You can get the layout of a content view by using {@link QCircleTemplate#getLayoutById(int)} with a constant of this class.<BR>
 *  
 * @see QCircleTemplate#getLayoutById(int)
 * @author jeongeun.jeon
 *
 */
public final class TemplateTag {
  /**
   * top content. <P>
   * If it has any children, you can set them, too.
   */
  public static final int CONTENT = R.id.content;
  
  /**
   * main content.<P>
   * If you use an empty template, it is identical to {@link #CONTENT}.
   * If you use an template which has any side bars, it means a child view of the top content excluding sidebars.
   */
  public static final int CONTENT_MAIN = R.id.main;
  
  /**
   * the first sidebar.<P>
   * If you use an empty template, it cannot be used.
   * If you use an template which has any side bars, it means the first sidebar.
   */
  public static final int CONTENT_SIDE_1 = R.id.side1;
  
  /**
   * the second sidebar.<P>
   * If you use an empty template or an template with one sidebar, it cannot be used.
   * If you use an template which has two side bars, it means the second sidebar.
   */
  public static final int CONTENT_SIDE_2 = R.id.side2;
  
}




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