com.supermap.data

类 SymbolLine



  • public class SymbolLine
    extends Symbol
    线状符号类。

    该类继承自符号基类,即 Symbol 类。

    • 方法概要

      所有方法 实例方法 具体方法 
      限定符和类型 方法和说明
      void dispose()
      释放该对象所占用的资源。
      boolean draw(android.graphics.Bitmap bmp)
      将符号对象在指定 Bitmap 位图上绘制出来。
      boolean draw(android.graphics.Bitmap bmp, Color color)
      将符号对象在指定 Bitmap 位图上绘制出来。
      SymbolType getType()
      返回线符号对象。
      • 从类继承的方法 java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 方法详细资料

      • dispose

        public void dispose()
        释放该对象所占用的资源。当调用该方法之后,此对象不再可用。
        覆盖:
        dispose 在类中 Symbol
      • getType

        public SymbolType getType()
        返回线符号对象。
        覆盖:
        getType 在类中 Symbol
        返回:
        线符号对象。
      • draw

        public boolean draw(android.graphics.Bitmap bmp,
                            Color color)
        将符号对象在指定 Bitmap 位图上绘制出来。
        覆盖:
        draw 在类中 Symbol
        参数:
        bmp - 指定 Bitmap 位图。
        color - 背景颜色
        返回:
        绘制成功则返回true;否则返回false。
      • draw

        public boolean draw(android.graphics.Bitmap bmp)
        将符号对象在指定 Bitmap 位图上绘制出来。
        覆盖:
        draw 在类中 Symbol
        参数:
        bmp - 指定 Bitmap 位图。
        返回:
        绘制成功则返回true;否则返回false。