如何在安卓中从图库中选择多张图片?
在上一篇文章中,我们已经看到了 如何在安卓 中从图库中选择一张图片,但是当我们在 whatsapp 上发布状态或者在 facebook 或 instagram 上发布帖子时,大多数情况下我们会选择多张图片。因此,在本文中,我们已经逐步讨论了如何从图库中选择一个或多个图像,然后我们将看到所选图像的总数。下面给出一个视频示例,来了解一下 我们在本文中要做什么 。注意,我们将使用 Java 语言来实现这个项目。
[https://media.geeksforgeeks.org/wp-content/uploads/20210302185648/selectmultiple.mp4](https://media.geeksforgeeks.org/wp-content/uploads/20210302185648/selectmultiple.mp4)分步实施
第一步:创建新项目
要在安卓工作室创建新项目,请参考如何在安卓工作室创建/启动新项目。注意选择 Java 作为编程语言。
步骤 2: 使用 AndroidManifest.xml 文件
为了向 Firebase 添加数据,我们应该授予访问互联网的权限。要添加这些权限,请导航至应用程序> AndroidManifest.xml ,并在该文件中添加以下权限。
步骤 3:使用 activity_main.xml 文件
导航到应用程序> res >布局> activity_main.xml 并将下面的代码添加到该文件中。下面是 activity_main.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:orientation="vertical"
tools:context=".MainActivity">
<Button
android:id="@+id/select"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="Select Multiple Images" />
<ImageSwitcher
android:id="@+id/image"
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_marginLeft="100dp" />
<!--click here to view previous image-->
<Button
android:id="@+id/previous"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="Previous" />
<!--click here to view next image-->
<Button
android:id="@+id/next"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="Next" />
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#000"
android:textSize="22sp"
android:textStyle="bold" />
</LinearLayout>
第四步:使用MainActivity.java 文件
转到MainActivity.java文件,参考以下代码。以下是MainActivity.java文件的代码。代码中添加了注释,以更详细地理解代码。
Java 语言(一种计算机语言,尤用于创建网站)
import android.content.ClipData;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageSwitcher;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.ViewSwitcher;
import androidx.appcompat.app.AppCompatActivity;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends AppCompatActivity {
Button select, previous, next;
ImageSwitcher imageView;
int PICK_IMAGE_MULTIPLE = 1;
String imageEncoded;
TextView total;
ArrayList<Uri> mArrayUri;
int position = 0;
List<String> imagesEncodedList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
select = findViewById(R.id.select);
total = findViewById(R.id.text);
imageView = findViewById(R.id.image);
previous = findViewById(R.id.previous);
mArrayUri = new ArrayList<Uri>();
// showing all images in imageswitcher
imageView.setFactory(new ViewSwitcher.ViewFactory() {
@Override
public View makeView() {
ImageView imageView1 = new ImageView(getApplicationContext());
return imageView1;
}
});
next = findViewById(R.id.next);
// click here to select next image
next.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (position < mArrayUri.size() - 1) {
// increase the position by 1
position++;
imageView.setImageURI(mArrayUri.get(position));
} else {
Toast.makeText(MainActivity.this, "Last Image Already Shown", Toast.LENGTH_SHORT).show();
}
}
});
// click here to view previous image
previous.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (position > 0) {
// decrease the position by 1
position--;
imageView.setImageURI(mArrayUri.get(position));
}
}
});
imageView = findViewById(R.id.image);
// click here to select image
select.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// initialising intent
Intent intent = new Intent();
// setting type to select to be image
intent.setType("image/*");
// allowing multiple image to be selected
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_IMAGE_MULTIPLE);
}
});
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
// When an Image is picked
if (requestCode == PICK_IMAGE_MULTIPLE && resultCode == RESULT_OK && null != data) {
// Get the Image from data
if (data.getClipData() != null) {
ClipData mClipData = data.getClipData();
int cout = data.getClipData().getItemCount();
for (int i = 0; i < cout; i++) {
// adding imageuri in array
Uri imageurl = data.getClipData().getItemAt(i).getUri();
mArrayUri.add(imageurl);
}
// setting 1st selected image into image switcher
imageView.setImageURI(mArrayUri.get(0));
position = 0;
} else {
Uri imageurl = data.getData();
mArrayUri.add(imageurl);
imageView.setImageURI(mArrayUri.get(0));
position = 0;
}
} else {
// show this if no image is selected
Toast.makeText(this, "You haven't picked Image", Toast.LENGTH_LONG).show();
}
}
}
输出:
[https://media.geeksforgeeks.org/wp-content/uploads/20210302185648/selectmultiple.mp4](https://media.geeksforgeeks.org/wp-content/uploads/20210302185648/selectmultiple.mp4)版权属于:月萌API www.moonapi.com,转载请注明出处