写到水穷山杪,定是尘土人间
梦想不上班
这个人懒得写资料
展开
-
时间轴过去现在未来
/ 计算最佳刻度间隔。// 刻度间隔为30分钟。// 刻度间隔为1小时。// 默认刻度间隔为15分钟。// 计算刻度间隔,以保证刻度之间的间距不至于过于拥挤。// 如果刻度数量较多,增大刻度间隔。// 计算特定时间对应的 x 坐标。// 绘制时间节点图表。// 计算刻度的数量。// 绘制特定时间的图表。// 绘制特定时间的图表。// 设置时间节点集合。// 绘制时间节点图表。原创 2024-03-14 16:56:59 · 346 阅读 · 0 评论 -
安卓开发断崖揽道VIEW
public class GeographicProfileViewV1 extends View { public Paint profilePaint,RadiusPaint; public Path profilePath; public Paint waterLinePaint; public Paint waterFillPaint; // 新增的水位填充颜色 public static final int PROFILE_COLOR = Color.par原创 2023-10-27 09:10:11 · 153 阅读 · 0 评论 -
Android自定义View无线手尺
手尺原创 2022-06-02 14:13:31 · 211 阅读 · 0 评论 -
Android仪表盘自定View
速度区间原创 2022-06-02 14:06:00 · 569 阅读 · 2 评论 -
Android 开发自定义角度进度
/** * 绘制当前的圆弧 * @param canvas */private void drawArc(Canvas canvas) { //绘制圆弧背景 float x = (getWidth() - getHeight() / 2) / 2; float y = getHeight() / 4; RectF mRectF = new RectF( x, y, getWidth() - x, getHeight() - y); c.原创 2021-11-11 17:39:42 · 2299 阅读 · 0 评论 -
Java代码求两点之间经纬度
public static MyLatLng getMyLatLng(MyLatLng A,double distance,double angle){ double dx = distance*Math.sin(Math.toRadians(angle)); double dy= distance*Math.cos(Math.toRadians(angle)); double bjd=(dx/A.Ed+A.m_RadLo)*180./Math.PI; double bw..原创 2021-11-10 16:09:00 · 2501 阅读 · 0 评论 -
多图上传
<provider android:name="androidx.core.content.FileProvider" android:authorities="iec.hydrology.polling.fileprovider" android:exported="false" android:grantUriPermissions="true"> <meta-data android:name="android.support.原创 2021-03-19 16:38:56 · 170 阅读 · 0 评论