【Android Studio】第一行代码-第8章 运用手机多媒体 图片

本文介绍在Android Studio中如何实现从手机相册选择图片并显示的功能。内容涉及请求WRITE_EXTERNAL_STORAGE权限,使用Intent打开相册,根据不同Android版本处理返回的Uri,解析Uri获取真实图片路径,并显示在界面上。最后提到了照片压缩的后续学习方向。
摘要由CSDN通过智能技术生成

〇、前情提要

第一行代码Android第八章内容中调用摄像头拍照、从相册中选照片部分。
参考:

  1. 思维导图
    https://www.zhihu.com/question/27596017/answer/37634740
  2. 【Android Studio】第一行代码-第8章 运用手机多媒体 通知
    https://blog.csdn.net/weixin_43210113/article/details/109378946
  3. 【Android Studio】第一行代码-第8章 运用手机多媒体 音频视频
    https://blog.csdn.net/weixin_43210113/article/details/109409166

一、概要

目录

在这里插入图片描述

思维导图

在这里插入图片描述


2.从相册中选择照片

编辑activity_main.xml

在布局中添加一个按钮用于从相册中选择照片

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <Button
        android:id="@+id/take_photo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Take Photo" />

    <Button
        android:id="@+id/choose_from_album"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Choose From Album" />

    <ImageView
        android:id="@+id/picture"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal" />

</LinearLayout>
修改MainActivity.java
public class MainActivity extends AppCompatActivity {
   
    public static final int CHOOSE_PHOTO = 2;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
   
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button takePhoto = (Button) findViewById(R.id.take_photo);
        
        Button chooseFromAlbum = (Button) findViewById(R.id.choose_from_album);
        ……
        chooseFromAlbum.setOnClickListener(new View.OnClickListener() {
   
            @Override
            public void onClick(View v) {
   
                if (ContextCompat.checkSelfPermission(MainActivity.this, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
   
                    ActivityCompat.requestPermissions(MainActivity.this, new String[]{
    Manifest.permission. WRITE_EXTERNAL_STORAGE }, 1);
                } else {
   
                    openAlbum();
                }
            }
        });
    }

    private void openAlbum() {
   
        Intent intent = new Intent("android.intent.action.GET_CONTENT");
        intent.setType("image/*");
        startActivityForResult
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值