• Stars
    star
    116
  • Rank 302,733 (Top 6 %)
  • Language
    Java
  • Created about 7 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

仿小米MIUI天气24小时天气预测折线图控件

miuiweatherline

仿小米MIUI8天气24小时预报折线图控件
源码解析博客地址
http://blog.csdn.net/ccy0122/article/details/76464825

效果预览

image1 image2

使用方法

xml:

    <com.example.ccy.miuiweatherline.MiuiWeatherView
        android:id="@+id/weather"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:line_interval="60dp" (可选,相邻点距离)
        app:min_point_height="60dp"  (可选,折线最低高度)
        app:background_color="#ffffff"/>  (可选,背景色)


code:
使用com.example.ccy.miuiweatherline.WeatherBean作为元数据:

weatherView = (MiuiWeatherView) findViewById(R.id.weather);
 List<WeatherBean> data = new ArrayList<>();
 //add your WeatherBean to data
 WeatherBean b1 = new WeatherBean(WeatherBean.SUN,20,"05:00");
 WeatherBean b2 = new WeatherBean(WeatherBean.RAIN,22,"日出","05:30");
 //b3、b4...bn
 data.add(b1);
 data.add(b2);
 weatherView.setData(data);

(代码很少,建议直接copy,因为大家应该大概率会去修改/增加源码的天气icon、天气类型等)

More Repositories

1

FocusLayoutManager

有焦点item的水平/垂直滚动RecyclerView-LayoutManager。仿Android豆瓣书影音“推荐“频道列表布局
Java
831
star
2

WanAndroid_Flutter

🔥🔥超完整超漂亮的Flutter版wanAndroid客户端。含wanAndroid已开放的所有功能(包括TODO)。项目包含BloC模式、Provider模式、常规模式。
Dart
488
star
3

douyinloadingview

仿android安卓抖音v2.5加载框控件
Java
154
star
4

bounceballview

android小球自由落体弹跳动画效果的自定义控件
Java
56
star
5

diy_roundindicator

自定义控件---仿支付宝芝麻信用圆形仪表盘
Java
55
star
6

KeepCountdownView

仿Keep运动休息倒计时控件
Java
18
star
7

flutter_dinosaur_run

Pixel style dinosaur-run small game。像素风恐龙快跑小游戏。模仿自chrome
Dart
15
star
8

flutter_relative_layout

Flutter上的相对布局:Flutter_RelativeLayout
Dart
13
star
9

lyricindicator

仿今日头条颜色渐变导航栏指示器
Java
8
star
10

lyrictextview

歌词渐变文本控件
Java
7
star
11

MVP-Note_app

一款MVP模式的练习作品---便笺app。以谷歌googlesampels的todoapp为学习模板
Java
7
star
12

MarkCalendarView

仿github、leetcode、豆瓣观影记录的打卡日历view
Java
7
star
13

rollerradiogroup

Android横向滚动单选控件
Java
5
star
14

ScrollRulerView

Android滑动卷尺控件(仿薄荷健康滑动卷尺)
Java
5
star
15

rectloadingview

android条形图加载控件
Java
4
star
16

My_CJLU

中国计量大学实验预约管理软件
Java
2
star
17

QuickChart

Fast chart App official homepage 快制图表App官方主页
1
star