本文整理匯總了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());
}
示例2: isChartRotationEnabled
import lecho.lib.hellocharts.gesture.PieChartTouchHandler; //導入依賴的package包/類
public boolean isChartRotationEnabled() {
if (touchHandler instanceof PieChartTouchHandler) {
return ((PieChartTouchHandler) touchHandler).isRotationEnabled();
} else {
return false;
}
}
示例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());
}
示例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);
}
}
示例5: isChartRotationEnabled
import lecho.lib.hellocharts.gesture.PieChartTouchHandler; //導入依賴的package包/類
public boolean isChartRotationEnabled() {
if (this.touchHandler instanceof PieChartTouchHandler) {
return ((PieChartTouchHandler) this.touchHandler).isRotationEnabled();
}
return false;
}
示例6: setChartRotationEnabled
import lecho.lib.hellocharts.gesture.PieChartTouchHandler; //導入依賴的package包/類
public void setChartRotationEnabled(boolean isRotationEnabled) {
if (this.touchHandler instanceof PieChartTouchHandler) {
((PieChartTouchHandler) this.touchHandler).setRotationEnabled(isRotationEnabled);
}
}