Android Volley是Android平台上很好用的第三方开源网络通信框架。使用简答,功能强大。
Android Volley的库jar包Volley.ja下载连接地址:Volley下载
下载后解压的volley.jar直接添加到项目的libs中就可以使用
使用代码如下:
activity_main.xml:
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:orientation="vertical" 6 tools:context="com.zzw.testvolley.MainActivity" > 7 8 <TextView 9 android:id="@+id/textView" 10 android:layout_width="match_parent" 11 android:layout_height="wrap_content" 12 android:layout_weight="1" 13 android:scrollbars="vertical" 14 android:singleLine="false" 15 android:text="@string/hello_world" /> 16 17 <ImageView 18 android:id="@+id/imageView" 19 android:layout_width="match_parent" 20 android:layout_height="wrap_content" 21 android:layout_weight="1" /> 22 23 </LinearLayout>