안 드 로 이 드 네트워크 요청 라 이브 러 리 방법 상세 설명
File 아래 Project Structrue,플러스 가이드 패키지
volley 네트워크 요청 절차:
1.요청 대기 열 만 들 기 RequestQueue queue = Volley.newRequestQueue(this);
2.요청 대상 만 들 기(3 종)
StringRequest request=new StringRequest("요청 방법","요청 한 네트워크 주소","성공 한 네트워크 리 셋","실패 한 네트워크 리 셋");
ImageRequest request=new ImageRequest("그림 경로","성공 적 인 리 셋 함수","그림 너비","그림 높이","그림 의 색상 속성","실패 한 네트워크 리 셋");
Jsonrequest request = new Jsonrequest();
3.요청 대상 을 요청 대기 열 에 넣 기 queue.add(request);
// : onstop
@Override
protected void onStop() {
super.onStop();
/* */
queue.cancelAll(this);
/* tag get */
queue.cancelAll("get");
/* tag post */
queue.cancelAll("post");
}
// : getPriority
@Override
public Priority getPriority() {
return Priority.LOW;
}
// : GetHeader
@Override
public Map<String, String> getHeaders() throws AuthFailureError {
Map<String,String> map = new HashMap<String, String>();
map.put("apikey","fc642e216cd19906f642ee930ce28174");
return map;
}
// : GetParams
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String,String> map = new HashMap<String, String>();
map.put("num","10");
map.put("page","1");
map.put("word","%E6%9E%97%E4%B8%B9");
return map;
}
코드 부분:xml 파일:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
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"
android:orientation="vertical"
tools:context="com.jredu.helloworld.activity.VolleyActivity">
<WebView
android:id="@+id/volleyWebView"
android:layout_width="match_parent"
android:layout_height="300dp">
</WebView>
<ImageView
android:id="@+id/img"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/volleyButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:textAllCaps="false"
android:text="Volley"/>
<Button
android:id="@+id/imgButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:textAllCaps="false"
android:text="Volley "/>
</LinearLayout>
activity 파일:
package com.jredu.helloworld.activity;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.webkit.WebView;
import android.widget.Button;
import android.widget.ImageView;
import com.android.volley.AuthFailureError;
import com.android.volley.NetworkResponse;
import com.android.volley.ParseError;
import com.android.volley.Request;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.HttpHeaderParser;
import com.android.volley.toolbox.ImageRequest;
import com.android.volley.toolbox.StringRequest;
import com.android.volley.toolbox.Volley;
import com.jredu.helloworld.R;
import java.io.UnsupportedEncodingException;
import java.util.HashMap;
import java.util.Map;
public class VolleyActivity extends AppCompatActivity {
WebView webView;
Button button;
Button imgButton;
ImageView img;
RequestQueue queue = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_volley);
queue = Volley.newRequestQueue(this);
webView = (WebView) findViewById(R.id.volleyWebView);
img = (ImageView) findViewById(R.id.img);
button = (Button) findViewById(R.id.volleyButton);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
doStringVolley2();
doStringVolley();
}
});
imgButton = (Button) findViewById(R.id.imgButton);
imgButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
GetImg();
}
});
}
/*get */
public void doStringVolley(){
/* */
//RequestQueue queue = Volley.newRequestQueue(this);
/* */
StringRequest request = new StringRequest(
Request.Method.GET,
"http://apis.baidu.com/txapi/tiyu/tiyu?num=10&page=1&word=%E6%9E%97%E4%B8%B9",
/*"http://www.baidu.com",*/
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
String s = response;
webView.getSettings().setDefaultTextEncodingName("utf-8");
webView.getSettings().setJavaScriptEnabled(true);
webView.loadDataWithBaseURL(null,s,"text/html","utf-8",null);
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
webView.loadDataWithBaseURL(null," !!!","text/html","utf-8",null);
}
}
){
/* */
@Override
public Map<String, String> getHeaders() throws AuthFailureError {
Map<String,String> map = new HashMap<String, String>();
map.put("apikey","fc642e216cd19906f642ee930ce28174");
return map;
}
/* */
@Override
protected Response<String> parseNetworkResponse(
NetworkResponse response) {
try {
String jsonObject = new String(
new String(response.data, "UTF-8"));
return Response.success(jsonObject, HttpHeaderParser.parseCacheHeaders(response));
} catch (UnsupportedEncodingException e) {
return Response.error(new ParseError(e));
} catch (Exception je) {
return Response.error(new ParseError(je));
}
}
/* */
@Override
public Priority getPriority() {
return Priority.LOW;
}
};
request.setTag("get");
/* */
queue.add(request);
}
/*post */
public void doStringVolley2(){
/* */
//RequestQueue queue = Volley.newRequestQueue(this);
/* */
StringRequest request = new StringRequest(
Request.Method.POST,
"http://www.baidu.com",
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
String s = response;
webView.getSettings().setDefaultTextEncodingName("utf-8");
webView.getSettings().setJavaScriptEnabled(true);
webView.loadDataWithBaseURL(null,s,"text/html","utf-8",null);
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
webView.loadDataWithBaseURL(null," !!!","text/html","utf-8",null);
}
}
){
/* params */
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String,String> map = new HashMap<String, String>();
map.put("num","10");
map.put("page","1");
map.put("word","%E6%9E%97%E4%B8%B9");
return map;
}
/* */
@Override
public Priority getPriority() {
return Priority.HIGH;
}
};
request.setTag("post");
/* */
queue.add(request);
}
/* */
public void GetImg(){
ImageRequest request = new ImageRequest(
"https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo/bd_logo1_31bdc765.png",
new Response.Listener<Bitmap>() {
@Override
public void onResponse(Bitmap response) {
img.setImageBitmap(response);
}
},
5000,
5000,
Bitmap.Config.ARGB_8888,
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
img.setImageResource(R.drawable.first5);
}
}
);
queue.add(request);
}
/* onStop , */
@Override
protected void onStop() {
super.onStop();
/* */
queue.cancelAll(this);
/* tag get */
queue.cancelAll("get");
/* tag post */
queue.cancelAll("post");
}
}
이상 은 안 드 로 이 드 네트워크 요청 라 이브 러 리 방법의 자료 정리 입 니 다.추 후 관련 자 료 를 계속 보충 하 겠 습 니 다.본 사이트 에 대한 지원 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.