布局文件,一个ImageView和ProgressBar,ProgressBar控件是实现加载的效果
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android=“http://schemas.android.com/apk/res/android”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
android:padding=“16dp”>
<ImageView
android:id=“@+id/image”
android:layout_width=“match_parent”
android:layout_height=“300dp” />
<ProgressBar
android:id=“@+id/progress_bar”
android:visibility=“gone”
android:layout_centerInParent=“true”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content” />
主活动
package com.yaninfo;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.ProgressBar;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.net.URL;
import java.io.InputStream;
import java.net.URLConnection;
/**
-
@Author: zhangyan
-
@Date: 2019/4/4 11:04
-
@Description: 图片异步加载
-
@Version: 1.0
*/
public class ImageActivity extends Activity {
private ImageView mImageView;
private ProgressBar mProgressBar;
private static String URL = “http://img.mp.itc.cn/upload/20170221/579c7d2769fd4ee2b6d4c460cd1c4b9c_th.jpg”;
private MyTask mTask = new MyTask();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.image_layout);
// 初始化
init();
// 执行线程
mTask.execute(URL);
}
/**
- 初始化控件
*/
private void init() {
mImageView = findViewById(R.id.image);
mProgressBar = findViewById(R.id.progress_bar);
}
/**
- 开启异步线程
*/
private class MyTask extends AsyncTask<String, Void, Bitmap> {
@Override
protected void onPreExecute() {
super.onPreExecute();
mProgressBar.setVisibility(View.VISIBLE);
}
/**
-
更新UI
-
@param bitmap
*/
@Override
protected void onPostExecute(Bitmap bitmap) {
super.onPostExecute(bitmap);
mImageView.setImageBitmap(bitmap);
mProgressBar.setVisibility(View.GONE);
}
/**
-
执行耗时操作
-
@param params
-
@return
*/
@Override
protected Bitmap doInBackground(String… params) {
// 从params可变长数组中获取传递进来的url参数
String url = params[0];
Bitmap bitmap = null;
URLConnection connection;
InputStream in = null;
BufferedInputStream buffer = null;
try {
connection = new URL(url).openConnection();
in = connection.getInputStream();
buffer = new BufferedInputStream(in);
// 输入流转化为bitmap对象,利用decodeStream方法来解析输入流
Thread.sleep(2000);
bitmap = BitmapFactory.decodeStream(buffer);
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
try {
in.close();
buffer.close();
} catch (IOException e) {
e.printStackTrace();
}
}
// 返回bitmap
return bitmap;
}
}
}
这里我们在doInBackground方法中定义了一个Bitmap 对象来存图片,最后Bitmap对象会传给onPostExecute方法用来更新UI。这里怎么传参? 想深入了解的小老弟,可以看一下源码很简单的!
布局文件,这里定义了两个Button,一个TextView控件和ProgressBar。采用的是RelativeLayout 布局
<?xml version="1.0" encoding="utf-8"?><RelativeLayout 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:gravity=“center”
tools:context=“.MainActivity”>
<Button
android:layout_centerInParent=“true”
android:id=“@+id/loading”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“点我加载”/>
<TextView
android:id=“@+id/text”
android:layout_below=“@+id/loading”
android:layout_centerInParent=“true”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“还没开始加载!” />
<ProgressBar
android:id=“@+id/progress_bar”
android:layout_below=“@+id/text”
android:layout_width=“fill_parent”
android:layout_height=“wrap_content”
android:progress=“0”
android:max=“100”
style=“?android:attr/progressBarStyleHorizontal”/>
<Button
android:layout_below=“@+id/progress_bar”
android:layout_centerInParent=“true”
android:id=“@+id/cancel”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“取消加载”/>
线程类
package com.yaninfo;
import android.os.AsyncTask;
import android.widget.ProgressBar;
import android.widget.TextView;
/**
-
@Author: zhangyan
-
@Date: 2019/4/4 9:58
-
@Description: AsyncTask线程任务进度条加载
-
@Version: 1.0
*/
public class MyTask extends AsyncTask<String, Integer, String> {
private TextView text;
private ProgressBar progressBar;
/**
-
构造方法
-
@param text
-
@param progressBar
*/
public MyTask(TextView text, ProgressBar progressBar) {
this.text = text;
this.progressBar = progressBar;
}
/**
- 执行线程任务前的操作
*/
@Override
protected void onPreExecute() {
text.setText(“加载中”);
}
/**
-
接收输入参数、执行任务中的耗时操作、返回线程任务执行的结果
-
@param params
-
@return
*/
@Override
protected String doInBackground(String… params) {
try {
for (int count = 0; count < 100; count++) {
// 改变count,之后传给onProgressUpdate中的progresses用于更新进度条
publishProgress(count);
// 休眠100毫秒
Thread.sleep(100);
}
} catch (InterruptedException e) {
e.printStackTrace();
}
return null;
}
/**
-
在主线程 显示线程任务执行的进度
-
@param progresses
*/
@Override
protected void onProgressUpdate(Integer… progresses) {
int progress = progresses[0];
progressBar.setProgress(progress);
text.setText(“loading…” + progress + “%”);
}
/**
-
接收线程任务执行结果、将执行结果显示到UI组件
-
@param result
*/
@Override
protected void onPostExecute(String result) {
text.setText(“加载完毕”);
}
/**
- 将异步任务设置为:取消状态
*/
@Override
protected void onCancelled() {
text.setText(“已取消”);
progressBar.setProgress(0);
}
}
这里在doInBackground方法中用for循环模拟了更新进度条的逻辑,然后在执行相关UI操作,很简单有没有!!
主活动
主活动
package com.yaninfo;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
/**
-
@Author: zhangyan
-
@Date: 2019/4/4 11:04
-
@Description: 进度条更新活动
-
@Version: 1.0
*/
public class ProgressBarActivity extends AppCompatActivity {
private MyTask mTask;
private Button loading;
private Button cancel;
private TextView text;
private android.widget.ProgressBar progressBar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.progressbar_layout);
init();
// 实例化AsyncTask对象
mTask = new MyTask(text, progressBar);
}
/**
- 初始化控件
*/
private void init() {
loading = findViewById(R.id.loading);
cancel = findViewById(R.id.cancel);
text = findViewById(R.id.text);
progressBar = findViewById(R.id.progress_bar);
loading.setOnClickListener(new MyListener());
cancel.setOnClickListener(new MyListener());
}
private class MyListener implements View.OnClickListener {
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.loading:
mTask.execute();
Log.e(“loading”, “############”);
break;
总结
作为一名从事Android的开发者,很多人最近都在和我吐槽Android是不是快要凉了?而在我看来这正是市场成熟的表现,所有的市场都是温水煮青蛙,永远会淘汰掉不愿意学习改变,安于现状的那批人,希望所有的人能在大浪淘沙中留下来,因为对于市场的逐渐成熟,平凡并不是我们唯一的答案!
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》,点击传送门,即可获取!
;
progressBar = findViewById(R.id.progress_bar);
loading.setOnClickListener(new MyListener());
cancel.setOnClickListener(new MyListener());
}
private class MyListener implements View.OnClickListener {
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.loading:
mTask.execute();
Log.e(“loading”, “############”);
break;
总结
作为一名从事Android的开发者,很多人最近都在和我吐槽Android是不是快要凉了?而在我看来这正是市场成熟的表现,所有的市场都是温水煮青蛙,永远会淘汰掉不愿意学习改变,安于现状的那批人,希望所有的人能在大浪淘沙中留下来,因为对于市场的逐渐成熟,平凡并不是我们唯一的答案!
[外链图片转存中…(img-x7CMrMw5-1714648360500)]
[外链图片转存中…(img-FGepjDs9-1714648360501)]
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》,点击传送门,即可获取!