本文整理匯總了Java中android.graphics.Path.offset方法的典型用法代碼示例。如果您正苦於以下問題:Java Path.offset方法的具體用法?Java Path.offset怎麽用?Java Path.offset使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類android.graphics.Path
的用法示例。
在下文中一共展示了Path.offset方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: drawIndicator
import android.graphics.Path; //導入方法依賴的package包/類
private void drawIndicator() {
float xPos = x + (getNearestDeviation() * gaugeWidth / MAX_DEVIATION);
float yPosition = y * 1.15f;
Matrix matrix = new Matrix();
float scalingFactor = numbersPaint.getTextSize() / 3;
matrix.setScale(scalingFactor, scalingFactor);
Path indicator = new Path();
indicator.moveTo(0, -2);
indicator.lineTo(1, 0);
indicator.lineTo(-1, 0);
indicator.close();
indicator.transform(matrix);
indicator.offset(xPos, yPosition);
canvas.drawPath(indicator, gaugePaint);
}
示例2: getViewPathWithOffsetAt
import android.graphics.Path; //導入方法依賴的package包/類
private Path getViewPathWithOffsetAt(int position) {
Path noOffsetPath = viewPaths.get(position);
if (noOffsetPath == null) {
return null;
}
Path path = new Path();
path.set(noOffsetPath);
path.offset(offsetX, offsetY);
return path;
}
示例3: getScaledAndOffsetPath
import android.graphics.Path; //導入方法依賴的package包/類
public Path getScaledAndOffsetPath(float offsetX, float offsetY, float scaleX, float scaleY) {
Path newPath = new Path(path);
newPath.offset(offsetX, offsetY);
newPath.transform(getScaleMatrix(newPath, scaleX, scaleY));
return newPath;
}