當前位置: 首頁>>代碼示例>>Java>>正文


Java PieChartTouchHandler類代碼示例

本文整理匯總了Java中lecho.lib.hellocharts.gesture.PieChartTouchHandler的典型用法代碼示例。如果您正苦於以下問題:Java PieChartTouchHandler類的具體用法?Java PieChartTouchHandler怎麽用?Java PieChartTouchHandler使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


PieChartTouchHandler類屬於lecho.lib.hellocharts.gesture包,在下文中一共展示了PieChartTouchHandler類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: PieChartView

import lecho.lib.hellocharts.gesture.PieChartTouchHandler; //導入依賴的package包/類
public PieChartView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    pieChartRenderer = new PieChartRenderer(context, this, this);
    touchHandler = new PieChartTouchHandler(context, this);
    setChartRenderer(pieChartRenderer);
    if (Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
        this.rotationAnimator = new PieChartRotationAnimatorV8(this);
    } else {
        this.rotationAnimator = new PieChartRotationAnimatorV14(this);
    }
    setPieChartData(PieChartData.generateDummyData());
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:13,代碼來源:PieChartView.java

示例2: isChartRotationEnabled

import lecho.lib.hellocharts.gesture.PieChartTouchHandler; //導入依賴的package包/類
public boolean isChartRotationEnabled() {
    if (touchHandler instanceof PieChartTouchHandler) {
        return ((PieChartTouchHandler) touchHandler).isRotationEnabled();
    } else {
        return false;
    }
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:8,代碼來源:PieChartView.java

示例3: PieChartView

import lecho.lib.hellocharts.gesture.PieChartTouchHandler; //導入依賴的package包/類
public PieChartView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    this.onValueTouchListener = new DummyPieChartOnValueSelectListener();
    this.pieChartRenderer = new PieChartRenderer(context, this, this);
    this.touchHandler = new PieChartTouchHandler(context, this);
    setChartRenderer(this.pieChartRenderer);
    if (VERSION.SDK_INT < 14) {
        this.rotationAnimator = new PieChartRotationAnimatorV8(this);
    } else {
        this.rotationAnimator = new PieChartRotationAnimatorV14(this);
    }
    setPieChartData(PieChartData.generateDummyData());
}
 
開發者ID:JackChan1999,項目名稱:boohee_v5.6,代碼行數:14,代碼來源:PieChartView.java

示例4: setChartRotationEnabled

import lecho.lib.hellocharts.gesture.PieChartTouchHandler; //導入依賴的package包/類
/**
 * Set false if you don't wont the chart to be rotated by touch gesture. Rotating programmatically will still work.
 *
 * @param isRotationEnabled
 */
public void setChartRotationEnabled(boolean isRotationEnabled) {
    if (touchHandler instanceof PieChartTouchHandler) {
        ((PieChartTouchHandler) touchHandler).setRotationEnabled(isRotationEnabled);
    }
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:11,代碼來源:PieChartView.java

示例5: isChartRotationEnabled

import lecho.lib.hellocharts.gesture.PieChartTouchHandler; //導入依賴的package包/類
public boolean isChartRotationEnabled() {
    if (this.touchHandler instanceof PieChartTouchHandler) {
        return ((PieChartTouchHandler) this.touchHandler).isRotationEnabled();
    }
    return false;
}
 
開發者ID:JackChan1999,項目名稱:boohee_v5.6,代碼行數:7,代碼來源:PieChartView.java

示例6: setChartRotationEnabled

import lecho.lib.hellocharts.gesture.PieChartTouchHandler; //導入依賴的package包/類
public void setChartRotationEnabled(boolean isRotationEnabled) {
    if (this.touchHandler instanceof PieChartTouchHandler) {
        ((PieChartTouchHandler) this.touchHandler).setRotationEnabled(isRotationEnabled);
    }
}
 
開發者ID:JackChan1999,項目名稱:boohee_v5.6,代碼行數:6,代碼來源:PieChartView.java


注:本文中的lecho.lib.hellocharts.gesture.PieChartTouchHandler類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。