Android 파일 다운로드 진행 표시 기능 구현
선행 효과 도:
위의 파란색 진도 바 는 파일 다운 로드 량 의 백분율 에 따라 불 러 옵 니 다.중부 텍스트 컨트롤 은 현재 파일 다운로드 의 백분율 로 사용 되 며,맨 아래 이미지 뷰 는 다운 로드 된 파일 을 보 여 줍 니 다.프로젝트 의 목적 은 사용자 에 게 파일 다운 로드 량 을 동적 으로 보 여 주 는 것 입 니 다.
다음은 코드 구현:우선 레이아웃 파일:
<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"
tools:context="${relativePackage}.${activityClass}" >
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="100" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/progressBar"
android:layout_centerHorizontal="true"
android:layout_marginTop="24dp"
android:text="TextView" />
<ImageView
android:id="@+id/imageView"
android:layout_marginTop="24dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_below="@+id/textView"
android:contentDescription="@string/app_name"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
다음 주 Activity 코드:
public class MainActivity extends Activity {
ProgressBar pb;
TextView tv;
ImageView imageView;
int fileSize;
int downLoadFileSize;
String fileEx,fileNa,filename;
// , UI
private Handler handler = new Handler(){
@Override
public void handleMessage(Message msg)
{// Handler, UI
if (!Thread.currentThread().isInterrupted())
{
switch (msg.what)
{
case 0:
pb.setMax(fileSize);
case 1:
pb.setProgress(downLoadFileSize);
int result = downLoadFileSize * 100 / fileSize;
tv.setText(result + "%");
break;
case 2:
Toast.makeText(MainActivity.this, " ", Toast.LENGTH_SHORT).show();
FileInputStream fis = null;
try {
fis = new FileInputStream(Environment.getExternalStorageDirectory() + File.separator + "/ceshi/" + filename);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
Bitmap bitmap = BitmapFactory.decodeStream(fis); /// Bitmap
imageView.setImageBitmap(bitmap);
break;
case -1:
String error = msg.getData().getString("error");
Toast.makeText(MainActivity.this, error, Toast.LENGTH_SHORT).show();
break;
}
}
super.handleMessage(msg);
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
pb=(ProgressBar)findViewById(R.id.progressBar);
tv=(TextView)findViewById(R.id.textView);
imageView = (ImageView) findViewById(R.id.imageView);
tv.setText("0%");
new Thread(){
public void run(){
try {
// , : URL,
down_file("http://cdnq.duitang.com/uploads/item/201406/15/20140615203435_ABQMa.jpeg", Environment.getExternalStorageDirectory() + File.separator + "/ceshi/");
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}.start();
}
/**
*
* @param url:
* @param path:
* @throws IOException
*/
public void down_file(String url,String path) throws IOException{
//
filename=url.substring(url.lastIndexOf("/") + 1);
//
URL myURL = new URL(url);
URLConnection conn = myURL.openConnection();
conn.connect();
InputStream is = conn.getInputStream();
this.fileSize = conn.getContentLength();//
if (this.fileSize <= 0) throw new RuntimeException(" ");
if (is == null) throw new RuntimeException("stream is null");
File file1 = new File(path);
File file2 = new File(path+filename);
if(!file1.exists()){
file1.mkdirs();
}
if(!file2.exists()){
file2.createNewFile();
}
FileOutputStream fos = new FileOutputStream(path+filename);
// +
byte buf[] = new byte[1024];
downLoadFileSize = 0;
sendMsg(0);
do{
//
int numread = is.read(buf);
if (numread == -1)
{
break;
}
fos.write(buf, 0, numread);
downLoadFileSize += numread;
sendMsg(1);//
} while (true);
sendMsg(2);//
try{
is.close();
} catch (Exception ex) {
Log.e("tag", "error: " + ex.getMessage(), ex);
}
}
// Handler , UI
private void sendMsg(int flag)
{
Message msg = new Message();
msg.what = flag;
handler.sendMessage(msg);
}
}
마지막 으로 주의해 야 할 것 은 AndroidManifest.xml 파일 에 네트워크 에 접근 할 수 있 는 권한 을 추가 하 는 것 입 니 다.
<uses-permission android:name="android.permission.INTERNET"/>
여기 서 안 드 로 이 드 파일 다운로드 에 대한 동적 디 스 플레이 다운로드 진행 상황 에 대한 내용 을 공유 하 였 습 니 다.여러분 의 학습 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.