Compartilhar via


PathMeasure.GetSegment(Single, Single, Path, Boolean) Método

Definição

Dada uma distância de início e parada, retorne em primeiro lugar o(s) segmento(s) interveniente(s).

[Android.Runtime.Register("getSegment", "(FFLandroid/graphics/Path;Z)Z", "GetGetSegment_FFLandroid_graphics_Path_ZHandler")]
public virtual bool GetSegment (float startD, float stopD, Android.Graphics.Path? dst, bool startWithMoveTo);
[<Android.Runtime.Register("getSegment", "(FFLandroid/graphics/Path;Z)Z", "GetGetSegment_FFLandroid_graphics_Path_ZHandler")>]
abstract member GetSegment : single * single * Android.Graphics.Path * bool -> bool
override this.GetSegment : single * single * Android.Graphics.Path * bool -> bool

Parâmetros

startD
Single
stopD
Single
dst
Path
startWithMoveTo
Boolean

Retornos

Atributos

Comentários

Dada uma distância de início e parada, retorne em primeiro lugar o(s) segmento(s) interveniente(s). Se o segmento for de comprimento zero, retorne false, caso contrário, retorne true. startD e stopD são fixados a valores legais (0..getLength()). Se startD >= stopD, então retorne false (e deixe o dst intacto). Inicie o segmento com um moveTo se startWithMoveTo for true.

Em android.os.Build.VERSION_CODES#KITKAT versões anteriores e anteriores, o caminho resultante pode não ser exibido em um Canvas acelerado por hardware. Uma solução simples é adicionar uma única operação a esse caminho, como dst.rLineTo(0, 0).

Documentação Java para android.graphics.PathMeasure.getSegment(float, float, android.graphics.Path, boolean).

Partes desta página são modificações baseadas no trabalho criado e compartilhado pelo Android Open Source Project e usado de acordo com os termos descritos na Creative Commons 2.5 Attribution License.

Aplica-se a