亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何實現相冊中圖片上傳或下載

發布時間:2021-04-16 10:06:04 來源:億速云 閱讀:393 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關Android如何實現相冊中圖片上傳或下載的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

具體內容如下

目標效果:

Android如何實現相冊中圖片上傳或下載

打開相冊選擇一張圖片,會顯示到上方的ImageView中并存儲到Bmob中,存儲后進入Bmob后臺,復制剛才添加的數據的objectId,粘貼到代碼指定出,然后運行,點擊下載會在下方的ImageView顯示剛才上傳的圖片,這里的下載是指定objectId,可以進行動態獲取objectId進行下載。

1.activity_main.xml頁面設置布局。

activity_main.xml頁面:

<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=".MainActivity" >
 
 <ImageView 
   android:id="@+id/ivHead"
   android:layout_marginTop="20dp"
   android:layout_centerHorizontal="true"
   android:layout_width="150dp"
   android:layout_height="150dp"/>
 
 <Button
   android:id="@+id/btnSelectImage"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:layout_alignParentLeft="true"
   android:layout_below="@+id/ivHead"
   android:layout_marginTop="16dp"
   android:text="打開相冊" />
 
 <Button
   android:id="@+id/btnDownloadImage"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:layout_alignParentLeft="true"
   android:layout_below="@+id/btnSelectImage"
   android:text="下載圖片" />
 
 <ImageView
   android:id="@+id/ivDownload"
   android:layout_width="150dp"
   android:layout_height="150dp"
   android:layout_marginTop="20dp"
   android:layout_centerHorizontal="true"
   android:layout_below="@+id/btnDownloadImage" />
 
</RelativeLayout>

2.MainActivity.java頁面定義上傳與下載方法。

MainActivity.java頁面:

package com.example.text;
 
import java.io.File;
 
import cn.bmob.v3.Bmob;
import cn.bmob.v3.BmobQuery;
import cn.bmob.v3.datatype.BmobFile;
import cn.bmob.v3.listener.DownloadFileListener;
import cn.bmob.v3.listener.GetListener;
import cn.bmob.v3.listener.UploadBatchListener;
import cn.bmob.v3.listener.UploadFileListener;
 
import com.android.volley.toolbox.ImageLoader;
import com.example.text.MainActivity;
 
import entity.Person;
 
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.app.Activity;
import android.content.Intent;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.Toast;
 
public class MainActivity extends Activity implements OnClickListener {
 
 private ImageView ivHead, ivDownload;
 private Button btnSelectImage, btnDownloadImage;
 
 private static final int IMAGE_CODE = 0;// 打開相冊
 private static final int RESIZE_CODE = 2;// 調整大小
 
 private static final String IMAGE_NAME = " ";// 圖片字符串
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 
 Bmob.initialize(this, "8ef8a4752f48682eadb32d3c8c8e398f");// 初始化Bmob
 
 // 初始化控件
 init();
 
 // 綁定點擊事件
 bindClick();
 }
 
 // 初始化控件
 private void init() {
 ivHead = (ImageView) findViewById(R.id.ivHead);
 ivDownload = (ImageView) findViewById(R.id.ivDownload);
 btnSelectImage = (Button) findViewById(R.id.btnSelectImage);
 btnDownloadImage = (Button) findViewById(R.id.btnDownloadImage);
 }
 
 // 綁定點擊事件
 private void bindClick() {
 btnSelectImage.setOnClickListener(this);
 btnDownloadImage.setOnClickListener(this);
 }
 
 @Override
 public void onClick(View view) {
 switch (view.getId()) {
 case R.id.btnSelectImage:
  Intent galleryIntent = new Intent(Intent.ACTION_GET_CONTENT);
  galleryIntent.addCategory(Intent.CATEGORY_OPENABLE);
  galleryIntent.setType("image/*");//圖片
  startActivityForResult(galleryIntent, IMAGE_CODE);  //跳轉,傳遞打開相冊請求碼
  break;
 case R.id.btnDownloadImage:
  BmobQuery<Person> query=new BmobQuery<Person>();
  query.getObject(this,"ef292ff6ef",new GetListener<Person>() { //第二個參數為想要下載的BmobFile數據的objectId
  
  @Override
  public void onSuccess(Person person) {
   Toast.makeText(MainActivity.this,"獲取成功",Toast.LENGTH_SHORT).show();
   
   //下載圖片
   downloadImage(person);
  }
  
  @Override
  public void onFailure(int arg0, String arg1) {
   Toast.makeText(MainActivity.this,"獲取失敗",Toast.LENGTH_SHORT).show();
  }
  });
  break;
 default:
  break;
 }
 
 }
 
 @Override
 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
 if (resultCode != RESULT_OK) {
  return;
 } else {
  switch (requestCode) {
  case IMAGE_CODE:
  Uri uri = data.getData();
  resizeImage(uri);
  // 將獲取到的uri轉換為String型
  String[] images = { MediaStore.Images.Media.DATA };// 將圖片URI轉換成存儲路徑
  Cursor cursor = this
   .managedQuery(uri, images, null, null, null);
  int index = cursor
   .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
  cursor.moveToFirst();
  String img_url = cursor.getString(index);
  upload(img_url);
  break;
 
  case RESIZE_CODE:
  if (data != null) {
   showResizeImage(data);
  }
  break;
  }
 }
 super.onActivityResult(requestCode, resultCode, data);
 }
 
 // 判斷SD卡是否存在
 private boolean isSdcardExisting() {
 final String state = Environment.getExternalStorageState();
 if (state.equals(Environment.MEDIA_MOUNTED)) {
  return true;
 } else {
  return false;
 }
 }
 
 // 重塑圖片大小
 public void resizeImage(Uri uri) {
 Intent intent = new Intent("com.android.camera.action.CROP");
 intent.setDataAndType(uri, "image/*");
 intent.putExtra("crop", "true");// 可以裁剪
 intent.putExtra("aspectX", 1);
 intent.putExtra("aspectY", 1);
 intent.putExtra("outputX", 150);
 intent.putExtra("outputY", 150);
 intent.putExtra("return-data", true);
 startActivityForResult(intent, RESIZE_CODE);// 跳轉,傳遞調整大小請求碼
 }
 
 // 獲取路徑
 private Uri getImageUri() {
 return Uri.fromFile(new File(Environment.getExternalStorageDirectory(),
  IMAGE_NAME));
 }
 
 // 顯示圖片
 private void showResizeImage(Intent data) {
 Bundle extras = data.getExtras();
 if (extras != null) {
  Bitmap photo = extras.getParcelable("data");
  Drawable drawable = new BitmapDrawable(photo);
  ivHead.setImageDrawable(drawable);
 }
 }
 
 // 圖片上傳
 private void upload(String imgpath) {
 final BmobFile icon = new BmobFile(new File(imgpath));
 icon.upload(this, new UploadFileListener() {
 
  @Override
  public void onSuccess() {
  Person person = new Person();
  person.setIcon(icon);
  person.save(MainActivity.this);
  Toast.makeText(MainActivity.this,"圖片上傳成功",Toast.LENGTH_SHORT).show();
  }
 
  @Override
  public void onFailure(int arg0, String arg1) {
  Toast.makeText(MainActivity.this,"圖片上傳失敗",Toast.LENGTH_SHORT).show();
  }
 });
 }
 
 //下載圖片
 private void downloadImage(Person person) {
 BmobFile icon=person.getIcon();
 icon.download(MainActivity.this,new DownloadFileListener() {
  
  @Override
  public void onSuccess(String url) {
  ivDownload.setImageBitmap(BitmapFactory.decodeFile(url));  //根據地址解碼并顯示圖片
  
  }
  
  @Override
  public void onFailure(int arg0, String arg1) {
  Toast.makeText(MainActivity.this,"下載失敗",Toast.LENGTH_SHORT).show();
  }
 });
 
 }
}

3.Person.java頁面為實體類,運行自動生成一個Person表,這個表只有一個字段存儲圖片。

Person.java頁面:

package entity;
 
import cn.bmob.v3.BmobObject;
import cn.bmob.v3.datatype.BmobFile;
 
public class Person extends BmobObject{
 
 private BmobFile icon;
 
 public BmobFile getIcon() {
 return icon;
 }
 
 public void setIcon(BmobFile icon) {
 this.icon = icon;
 }
 
}

4.因為使用了Bmob,所以需要添加權限。

AndroidManifest.xml頁面:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.example.text"
  android:versionCode="1"
  android:versionName="1.0" >
 
  <uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="18" />
  <uses-permission android:name="android.permission.WRITE_CONTACTS"/>
  <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
  <uses-permission android:name="android.permission.INTERNET"/>
  
  <!-- 允許聯網 -->
  <uses-permission android:name="android.permission.INTERNET" />
  <!-- 獲取GSM(2g)、WCDMA(聯通3g)等網絡狀態的信息 -->
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  <!-- 獲取wifi網絡狀態的信息 -->
  <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  <!-- 保持CPU 運轉,屏幕和鍵盤燈有可能是關閉的,用于文件上傳和下載 -->
  <uses-permission android:name="android.permission.WAKE_LOCK" />
  <!-- 獲取sd卡寫的權限,用于文件上傳和下載 -->
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  <!-- 允許讀取手機狀態 用于創建BmobInstallation -->
  <uses-permission android:name="android.permission.READ_PHONE_STATE" />
 
  <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
      android:name="com.example.text.MainActivity"
      android:label="@string/app_name" >
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
 
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
  </application>
 
</manifest>

5.注意之前講過使用Bmob需要下載第三方SDK,將libs文件夾中的所有內容都復制到項目libs目錄下,然后Properties->Java Build Path->Libraries->Add JARs...添加剛復制的四個jar包

Android如何實現相冊中圖片上傳或下載

感謝各位的閱讀!關于“Android如何實現相冊中圖片上傳或下載”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳山县| 赣州市| 汝州市| 石河子市| 拜城县| 东城区| 淳安县| 宿松县| 廊坊市| 宜州市| 大石桥市| 静宁县| 望江县| 北川| 九台市| 奉节县| 亳州市| 海南省| 林芝县| 雷州市| 六盘水市| 池州市| 永州市| 康马县| 沈阳市| 磴口县| 沁源县| 余江县| 罗源县| 喀喇| 桂林市| 新乡市| 宁晋县| 延川县| 曲阜市| 万宁市| 武夷山市| 昌吉市| 望江县| 洛浦县| 徐州市|