Android AsyncTack 비동기 작업 실례 상세 설명
프로젝트 에서 사용 할 수 있 도록 Android AsyncTack 비동기 작업 을 공 고 히 하 는 지식 을 배 울 수 있 는 작은 인 스 턴 스 를 쓰 십시오.
어떻게 사용 하 는 지 소개 해 주세요.
1,AsyncTask 계승
public class MyTask extends AsyncTask
우리 이 세 가지 범 형의 작용 을 말 해 보 자.
Params:비동기 작업 을 호출 할 때 들 어 오 는 형식;
Progress:말 그대로 진도 바 라 고 하 는데 사실은 동적 인 하위 스 레 드 에서 메 인 스 레 드 publish 데이터 의 유형 입 니 다.
Result:결 과 를 되 돌려 주 는 형식
2.이런 추상 적 인 방법 을 다시 쓰 는 doInBackground.물론 재 작성 해 야 할 몇 가지 방법 도 있 습 니 다.우리 가 일일이 살 펴 보 겠 습 니 다.
doInBackground(추상 적 인 방법,반드시 실현 해 야 함)
/*
* UI
* @param params
* @return
*/
@Override// : Result : Param
protected String doInBackground(TextView... params) {
text = params[0];
Random random = new Random();
for (int i = 0; i < 50; i++) {
//
publishProgress(i);
// onProgressUpdate ,
// onProgressUpdate
try {
Thread.sleep(random.nextInt(10) * 10);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
return " ";
}
다음 세 가지 방법 은 구체 적 인 상황 에 따라 선택 하여 사용한다.
// doInBackground
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override// publishProgress(i)
protected void onProgressUpdate(Integer... values) {
super.onProgressUpdate(values);
text.setText(String.valueOf(values[0]));
}
// doInBackground
@Override // s Result
protected void onPostExecute(String s) {
super.onPostExecute(s);
text.setText(s);
}
3,비동기 임무 수행
,
/*
execute ,
*/
text = (TextView) findViewById(R.id.main_text1);
new MyTask().execute(text);
text = (TextView) findViewById(R.id.main_text2);
new MyTask().execute(text);
text = (TextView) findViewById(R.id.main_text3);
new MyTask().execute(text);
text = (TextView) findViewById(R.id.main_text4);
new MyTask().execute(text);
/*
API11
*/
ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(4);
text = (TextView) findViewById(R.id.main_text1);
new MyTask().executeOnExecutor(executor, text);
text = (TextView) findViewById(R.id.main_text2);
new MyTask().executeOnExecutor(executor, text);
text = (TextView) findViewById(R.id.main_text3);
new MyTask().executeOnExecutor(executor, text);
text = (TextView) findViewById(R.id.main_text4);
new MyTask().executeOnExecutor(executor, text);
주의:만약 에 우리 가 직접 가서 우리 의 임 무 를 실행한다 면 그것(임무)은 같은 하위 라인 에서 만 실 행 될 것 입 니 다.따라서 상술 한 첫 번 째 방식 으로 시작 할 때 네 가지 임 무 는 순서대로 실 행 됩 니 다.두 번 째 방식 은 스 레 드 풀 을 만 들 었 습 니 다.그러면 자동 으로 새로운 하위 스 레 드 를 만 들 수 있 습 니 다.모든 작업 은 순서대로 수행 하 는 것 이 아니 라 몇 개의 스 레 드 가 동시에 실 행 됩 니 다."웹 뷰 와 다운로드 이미지 가 공존 하 는 사례 에 네트워크 데 이 터 를 가 져 옵 니 다.
1.우선 우 리 는 레이아웃 을 해 야 합 니 다.구체 적 인 수 요 는 이 렇 습 니 다.WebView 위 에 ImageView 가 있 고 ImageView 는 WebView 를 따라 구 를 수 있 기 때문에 이 럴 때 우 리 는 ScrollView 를 사용 하 는 것 을 생각 했 습 니 다.그러나 여러분 은 잊 지 마 세 요.ScrollView 는 하나의 컨트롤 만 포함 할 수 있 기 때문에 우 리 는 Linear Layout 로 감 싸 면 됩 니 다.
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/main2_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<WebView
android:id="@+id/main2_web"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
</ScrollView>
2.다음 에 우 리 는 웹 페이지 에서 다운로드 한 내용 을 저장 하 는 실체 류 가 있어 야 한다.
public class Entry {
@SerializedName("title")
private String title;
@SerializedName("message")
private String message;
@SerializedName("img")
private String image;
public String getTitle() {
return title;
}
...// getter setter
public void setImage(String image) {
this.image = image;
}
}
3.그럼 우리 가 해결 해 야 할 문 제 는 그림 을 어떻게 다운로드 하 느 냐 하 는 것 입 니 다.웹 콘 텐 츠 를 어떻게 다운로드 합 니까?그러면 저희 가 통용 되 는 도구 류 두 개 를 쓰 겠 습 니 다.다운로드 도구 클래스(유 니 버 설)
/**
* Created by Lulu on 2016/8/31.
* <p/>
*
*/
public class NetWorkTask<T> extends AsyncTask<NetWorkTask.Callback<T>, Void, Object> {
private NetWorkTask.Callback<T> callback;
private Class<T> t;
private String url;
public NetWorkTask(String url, Class<T> t) {
this.url = url;
this.t = t;
}
@Override
protected Object doInBackground(Callback<T>... params) {
callback = params[0];
try {
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
connection.setRequestMethod("GET");
connection.setDoInput(true);
int code = connection.getResponseCode();
if (code == 200) {
InputStream is = connection.getInputStream();
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte[] buffer = new byte[102400];
int length;
while ((length = is.read(buffer)) != -1) {
bos.write(buffer, 0, length);
}
return bos.toString("UTF-8");
} else {
return new RuntimeException(" ");
}
} catch (Exception e) {
e.printStackTrace();
return e;
}
}
@Override
protected void onPostExecute(Object o) {
super.onPostExecute(o);
if(o instanceof String) {
String str = (String) o;
Gson gson = new Gson();
T t = gson.fromJson(str, this.t);
callback.onSuccess(t);
}
if( o instanceof Exception) {
Exception e = (Exception) o;
callback.onFailed(e);
}
}
public interface Callback<S> {
void onSuccess(S t);
void onFailed(Exception e);
}
}
그림 로 더(유 니 버 설)
/**
* Created by Lulu on 2016/8/31.
*
* Bitmap
* null
*/
public class ImageLoader extends AsyncTask<String, Void, Bitmap>{
private ImageView image;
public ImageLoader(ImageView image) {
this.image = image;
image.setImageResource(R.mipmap.ic_launcher);
}
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected Bitmap doInBackground(String... params) {
String url = params[0];
try {
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
connection.setRequestMethod("GET");
connection.setDoInput(true);
int code = connection.getResponseCode();
if (code == 200) {
InputStream is = connection.getInputStream();
return BitmapFactory.decodeStream(is);
}
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(Bitmap bitmap) {
super.onPostExecute(bitmap);
if (bitmap != null) {
image.setImageBitmap(bitmap);
} else {
image.setImageResource(R.mipmap.failed);
}
}
}
4,테스트 활동메모:웹 뷰 에서 좌우 로 미 끄 러 지지 않 는 큰 그림 을 어떻게 해결 하 는 지 보 세 요!
public class Main2Activity extends AppCompatActivity implements NetWorkTask.Callback<Entry>{
private WebView web;
private ImageView image;
// webView
private static final String CSS = "<style>img{max-width:100%} </style>";
private String title;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main2);
web = (WebView) findViewById(R.id.main2_web);
image = (ImageView) findViewById(R.id.main2_image);
new NetWorkTask<>("http://www.tngou.net/api/top/show?id=13122", Entry.class).execute(this);
}
@Override
public void onSuccess(Entry t) {
web.loadDataWithBaseURL("", t.getMessage(), "text/html; charset=utf-8", "UTF-8", null);
new ImageLoader(image).execute("http://img.blog.csdn.net/20160829134937003");
}
@Override
public void onFailed(Exception e) {
web.loadDataWithBaseURL("", " ", "text/html; charset=utf-8", "UTF-8", null);
}
}
5.효과 도:읽 어 주 셔 서 감사합니다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.