使用Retrofit+Rxjava+MPAndroid来显示气温曲线图

使用Retrofit+Rxjava+MPAndroid来显示气温曲线图

这里是抓包抓来API接口:http://aider.meizu.com/app/weather/listWeather?cityIds=101020600

先看一下最终的结果:

好吧,下面就正式开始项目吧~

1.导入第三方库

//okhttp
compile 'com.squareup.okhttp3:okhttp:3.6.0'
compile 'com.squareup.okio:okio:1.11.0'
compile 
//butterknife
compile 'com.jakewharton:butterknife:8.5.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
//Rxjava
compile 'io.reactivex:rxjava:1.1.3'
compile 'io.reactivex:rxandroid:1.1.0'
//Retrofit
compile 'com.squareup.retrofit2:retrofit:2.0.2'
compile 'com.squareup.retrofit2:converter-gson:2.0.2'
compile 'com.squareup.retrofit2:converter-scalars:2.0.2'
compile 'com.squareup.retrofit2:adapter-rxjava:2.0.2'
//gson
compile files('libs/gson-2.6.2.jar')
//MPAndroid
compile 'com.github.PhilJay:MPAndroidChart:v3.0.1'

2.初始化设置

  • 布局文件

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.v4.widget.NestedScrollView
        xmlns:android="http://schemas.android.com/apk/res/andro    id"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/activity_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin    "
        android:paddingTop="@dimen/activity_vertical_margin"
        tools:context="com.skkk.okhttp3stydy.MainActivity">
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">
            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:inputType="textPersonName"
                android:text="Demo"
                android:gravity="center"
                android:ems="10"
                android:id="@+id/editText"
                />
            <Button
                android:text="下载图片"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/button2"
                />
            <com.github.mikephil.charting.charts.LineChart
                android:id="@+id/lc_weather_future"
                android:layout_width="match_parent"
                android:layout_height="300dp"
                ></com.github.mikephil.charting.charts.LineChar    t>
    
            <com.github.mikephil.charting.charts.LineChart
                android:id="@+id/lc_weather_detail"
               
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>
    

很简单,一个标题,一个按钮,一个折线图

  • 然后我们设置一个Gson的接收类

    ...(此处省略)

  • Retrofit的接口文件

    public interface WeatherInterface {
        //http://aider.meizu.com/app/weather/listWeather?cityId    s=101010100
        @GET("app/weather/listWeather")
        Observable<WeatherGson>     getWeather(@Query("cityIds")String cityIds);
    }
    
  • 初始化网络请求

    String baseUrl = "http://aider.meizu.com/";
        retrofit = new Retrofit.Builder()
                .addConverterFactory(GsonConverterFactory.creat    e())
                .addCallAdapterFactory(RxJavaCallAdapterFactory    .create())
                .baseUrl(baseUrl)
                .build();
    WeatherInterfaceweatherInterface=retrofit.create(WeatherInt    erface.lass)
    

3.逻辑编写

  • 获取被监听者

    Observable<WeatherGson> weatherRequest     =weatherInterface.getWeather("101020600");
    
  • 网络请求

    weatherRequest.subscribeOn(Schedulers.newThread())
    
  • 数据处理(将获取到的Gson数据转化为MPAndroid需求的数据)

    这个demo中我们仅仅需要数据中的未来六天日夜间气温变化数据就

    1.获取目标数据

    //获取未来天气
    WeatherDetailsInfo weatherDetailsInfo =     weatherGson.getValue().get(0).getWeatherDetailsInfo();
    List<Weather> weathers     =weatherGson.getValue().get(0).getWeathers();
    

    2.转化为MPAndroid需求值List<Entry>

    List<Entry> entryListD = new ArrayList<Entry>();
    List<Entry> entryListN = new ArrayList<Entry>();
    
    for (int i = 0; i < weathers.size(); i++) {
        //将天气对象转化为图标中的数据元
        entryListD.add(new Entry(i, Float.valueOf(weathers.get(i).getTempDayC())));
        entryListN.add(new Entry(i, Float.valueOf(weathers.get(i).getTempNightC())));
        //将星期几添加到数组中
        days[i] = weathers.get(i).getWeek();
    }
    

    3.这里还需要设置一下chart中的横轴坐标格式器

    //设置X轴的格式
    xFormatter = new IAxisValueFormatter() {
    @Override
    public String getFormattedValue(float value, AxisBase axis) {
       return days[(int) value];
        }
    };
    

    4.设置折线图数据并返回

    List<LineDataSet> lineDataSetList = new ArrayList<LineDataSet>();
    lineDataSetList.add(new LineDataSet(entryListD, getString(R.string.future_weather_day)));
    lineDataSetList.add(new LineDataSet(entryListN, getString
    //返回直线图数据对象
    return lineDataSetList;
    

4.监听者主线程更新UI

  • 接收数据

    Observable<WeatherGson> weatherRequest = weatherInterface.getWeather("101020600");
    weatherRequest.subscribeOn(Schedulers.newThread())
            .subscribeOn(Schedulers.io())
            .map(new Func1<WeatherGson, List<LineDataSet>>() {
                @Override
                public List<LineDataSet> call(WeatherGson weatherGson) {
                    ...
                    //返回直线图数据对象
                    return lineDataSetList;
                }
            })
            .observeOn(AndroidSchedulers.mainThread())
            .subscribe(new Subscriber<List<LineDataSet>>() {
                @Override
                public void onCompleted() {
                    Toast.makeText(MainActivity.this, "完成网络!", Toast.LENGTH_SHORT).show();
                }
                @Override
                public void onError(Throwable e) {
                    Toast.makeText(MainActivity.this, "网络错误!", Toast.LENGTH_SHORT).show();
                }
                @Override
                public void onNext(List<LineDataSet> lineDataSetList) {
                    //显示图表
                    showChart(lineDataSetList);
                }
            });
    
  • 更新chart

    private void showChart(List<LineDataSet> dataSetList) {
        //设置日间温度曲线
        dataSetList.get(0).setMode(LineDataSet.Mode.HORIZONTAL_BEZIER);
        dataSetList.get(0).setColor(ContextCompat.getColor(this,R.color.colorAccent));
        dataSetList.get(0).setDrawCircleHole(false);
        dataSetList.get(0).setDrawCircles(false);
        
        //设置晚间温度曲线
        dataSetList.get(1).setMode(LineDataSet.Mode.HORIZONTAL_BEZIER);
        dataSetList.get(1).setColor(ContextCompat.getColor(this,R.color.colorPrimaryDark));
        dataSetList.get(1).setDrawCircleHole(false);
        dataSetList.get(1).setDrawCircles(false);
        
        //设置数据
        LineData dayLineData = new LineData();
        LineData infoLineData = new LineData();
        for (int i = 0; i < dataSetList.size(); i++) {
            dayLineData.addDataSet(dataSetList.get(i));
        }
        dayLineData.setValueFormatter(vFormatter);
        dayLineData.setValueTextSize(8f);
        dayLineData.setValueTextColor(Color.BLACK);
    
        //设置X轴
        XAxis dayXAxis = mDayLineChart.getXAxis();
        dayXAxis.setDrawGridLines(false);
        dayXAxis.setPosition(XAxis.XAxisPosition.BOTTOM);
        dayXAxis.setValueFormatter(xFormatter);
        //设置Y轴right
        YAxis axisRight = mDayLineChart.getAxisRight();
        axisRight.setDrawAxisLine(false);
        axisRight.setDrawGridLines(false);
        axisRight.setDrawLabels(false);
        //设置Y轴left
        YAxis axisLeft = mDayLineChart.getAxisLeft();
        axisLeft.setDrawAxisLine(false);
        axisLeft.setDrawGridLines(false);
        axisLeft.setDrawLabels(false);
        //设置chart
        Description description = new Description();
        description.setText("气温预测图");
        description.setTextSize(15f);
        description.setTextColor(getResources().getColor(R.color.colorPrimaryDark));
        mDayLineChart.setDescription(description);
        mDayLineChart.setData(dayLineData);
        mDayLineChart.setMarker(mIMarker);
        mDayLineChart.invalidate();
    

5.查看源码

一起进步吧,少年~
点击这里查看源码

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,602评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,442评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,878评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,306评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,330评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,071评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,382评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,006评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,512评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,965评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,094评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,732评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,283评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,286评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,512评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,536评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,828评论 2 345

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,514评论 25 707
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,600评论 18 139
  • afinalAfinal是一个android的ioc,orm框架 https://github.com/yangf...
    passiontim阅读 15,401评论 2 45
  • 题外:#睡前语#是我和四岁宝宝睡前的对话记录,希望通过这个,记录宝宝成长点滴,探寻小朋友的心理世界。 2月22日...
    佩芸说阅读 723评论 0 0
  • 如果浪费时间是一种犯罪的话 那我活到现在 已经都不知道被枪毙多少次了吧 今天去看了《一条狗的使命》 本来想下午3点...
    阿骄要坚持啊阅读 241评论 0 1