概述:自定义view,实现稿纸功能,可撤消,可恢复,稿纸可设置大小和拖动,有做限制,防止内存不足的问题出现。 使用方法:将DraftView添加到布局中即可。 接口api: // 获取最大宽度 public int getDraftMaxWidth() // 获取最大高度 public int getDraftMaxHeight() // 设置最大宽高,注意别太大(屏幕的2倍为宜),免得内存不足停止运行 public void setDraftMax(int width, int height
Android自定义控件RulerView,身高、体重等标尺,尺码控件,滑动可修改刻度值。.zip,Android自定义控件RulerView,仿唯品会身高、体重等标尺,尺码控件,滑动可修改刻度值(Android custom control RulerView, imitation only products will height, weight and other rulers, size control, slide to modify the scale value)
先给大家展示下效果图,如果大家感觉不错,请参考实现代码
效果图如下所示:
代码如下所示:
public class MainActivity extends Activity {
View view;
public static final int DRAG = 1;
public static final int SCALE = 2;
int mode = 1;
int height = 10, width = 10;
Override
protected vo