关于这个问题已经有很多不错的答案,但是自发布这些答案以来,已经出现了很多很棒的库。这旨在作为一种新手指南。
我将介绍几种用于执行网络操作的用例,以及一个或两个的解决方案。
通过HTTP ReST
通常,Json,可以是XML或其他名称
完整的API访问权限
假设您正在编写一个应用程序,可让用户跟踪股票价格,利率和当前汇率。您会发现一个看起来像这样的Json API:
http://api.example.com/stocks //ResponseWrapper<String> object containing a list of Srings with ticker symbols
http://api.example.com/stocks/$symbol //Stock object
http://api.example.com/stocks/$symbol/prices //PriceHistory<Stock> object
http://api.example.com/currencies //ResponseWrapper<String> object containing a list of currency abbreviation
http://api.example.com/currencies/$currency //Currency object
http://api.example.com/currencies/$id1/values/$id2 //PriceHistory<Currency> object comparing the prices of the first currency (id1) to the second (id2)
广场改造
对于具有多个端点的API而言,这是一个绝佳的选择,它使您可以声明ReST端点,而不必像对其他库(如ion或Volley)那样单独编码它们。(网站:http : //square.github.io/retrofit/)
您如何将它与Finances API结合使用?
build.gradle
将这些行添加到模块级别buid.gradle:
implementation 'com.squareup.retrofit2:retrofit:2.3.0' //retrofit library, current as of September 21, 2017
implementation 'com.squareup.retrofit2:converter-gson:2.3.0' //gson serialization and deserialization support for retrofit, version must match retrofit version
FinancesApi.java
public interface FinancesApi {
@GET("stocks")
Call<ResponseWrapper<String>> listStocks();
@GET("stocks/{symbol}")
Call<Stock> getStock(@Path("symbol")String tickerSymbol);
@GET("stocks/{symbol}/prices")
Call<PriceHistory<Stock>> getPriceHistory(@Path("symbol")String tickerSymbol);
@GET("currencies")
Call<ResponseWrapper<String>> listCurrencies();
@GET("currencies/{symbol}")
Call<Currency> getCurrency(@Path("symbol")String currencySymbol);
@GET("currencies/{symbol}/values/{compare_symbol}")
Call<PriceHistory<Currency>> getComparativeHistory(@Path("symbol")String currency, @Path("compare_symbol")String currencyToPriceAgainst);
}
财务ApiBuilder
public class FinancesApiBuilder {
public static FinancesApi build(String baseUrl){
return new Retrofit.Builder()
.baseUrl(baseUrl)
.addConverterFactory(GsonConverterFactory.create())
.build()
.create(FinancesApi.class);
}
}
财务片段
FinancesApi api = FinancesApiBuilder.build("http://api.example.com/"); //trailing '/' required for predictable behavior
api.getStock("INTC").enqueue(new Callback<Stock>(){
@Override
public void onResponse(Call<Stock> stockCall, Response<Stock> stockResponse){
Stock stock = stockCall.body();
//do something with the stock
}
@Override
public void onResponse(Call<Stock> stockCall, Throwable t){
//something bad happened
}
}
如果您的API要求发送API密钥或其他标头(如用户令牌等),则Retrofit可以简化此操作(有关详细信息,请参见此真棒答案:https : //stackoverflow.com/a/42899766/1024412)。
一站式ReST API访问
假设您正在构建“天气”应用程序,该应用程序可查找用户的GPS位置并检查该区域的当前温度并告诉他们心情。这种类型的应用程序无需声明API端点;它只需要能够访问一个API端点。
离子
对于此类访问来说,这是一个很棒的库。
请阅读msysmilu的出色答案(https://stackoverflow.com/a/28559884/1024412)
通过HTTP加载图像
凌空抽射
Volley也可以用于ReST API,但是由于需要更复杂的设置,因此我更喜欢使用Square的Retrofit,如上(http://square.github.io/retrofit/)
假设您正在构建一个社交应用程序,并希望加载朋友的个人资料照片。
build.gradle
将此行添加到模块级别buid.gradle:
implementation 'com.android.volley:volley:1.0.0'
ImageFetch.java
排球比翻新需要更多的设置。您将需要创建一个类似这样的类来设置RequestQueue,ImageLoader和ImageCache,但这还不错:
public class ImageFetch {
private static ImageLoader imageLoader = null;
private static RequestQueue imageQueue = null;
public static ImageLoader getImageLoader(Context ctx){
if(imageLoader == null){
if(imageQueue == null){
imageQueue = Volley.newRequestQueue(ctx.getApplicationContext());
}
imageLoader = new ImageLoader(imageQueue, new ImageLoader.ImageCache() {
Map<String, Bitmap> cache = new HashMap<String, Bitmap>();
@Override
public Bitmap getBitmap(String url) {
return cache.get(url);
}
@Override
public void putBitmap(String url, Bitmap bitmap) {
cache.put(url, bitmap);
}
});
}
return imageLoader;
}
}
user_view_dialog.xml
将以下内容添加到布局xml文件中以添加图像:
<com.android.volley.toolbox.NetworkImageView
android:id="@+id/profile_picture"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
app:srcCompat="@android:drawable/spinner_background"/>
UserViewDialog.java
将以下代码添加到onCreate方法(Fragment,Activity)或构造函数(Dialog)中:
NetworkImageView profilePicture = view.findViewById(R.id.profile_picture);
profilePicture.setImageUrl("http://example.com/users/images/profile.jpg", ImageFetch.getImageLoader(getContext());
毕加索
另一个来自Square的优秀图书馆。请访问该站点以获取一些出色的示例:http : //square.github.io/picasso/