編輯:關於Android編程
fix :
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
this.retrofit = new Retrofit.Builder()
.baseUrl(GankApi.BASE_URL)
.addCallAdapterFactory(RxJavaCallAdapterFactory.create())
.addConverterFactory(GsonConverterFactory.create(this.gson))
.client(okHttpClient)
.build();
**fix : **retrofit2.0後:BaseUrl要以/結尾,@GET 等請求不要以/開頭。
fix : 'com.squareup.retrofit:adapter-rxjava:2.0.0-beta1'
換為'com.squareup.retrofit:adapter-rxjava:2.0.0-beta2'
Android 的 Handler 機制(也有人叫消息機制)目的是為了跨線程通信,也就是多線程通信。之所以需要跨線程通信是因為在 Android 中主線程通常只負責 UI
發送短信 發送短信的時候,我們要使用的action是Intent.ACTION_SENDTO,並且要指定其URI是smsto:協議,這樣能保證是短信應用接
轉載請附上本文鏈接:http://blog.csdn.net/cyp331203/article/details/40423727 先來看看效果:
最近項目裡要做一個簡單的曲線圖來標識數據,開始以為很簡單,android已經有那麼多的開源圖表庫了,什麼achartenginee,hellochart,mpandroi