如何从片段中选择照片和打开图库?

时间:2017-09-06 09:05:22

标签: android-studio

如何在android studio中使用Profile Fragment显示图库中的图像?

我使用imageview(ivGallery)进入图库,所选图片将显示在(ivProfilePicture)中。

1 个答案:

答案 0 :(得分:2)

  • 首先调用意图

    <html>
    <head>
    <title>SP</title>
    </head>
    <body>
    <?php 
    require_once('connection.php');
    $smt = $conn->query('CALL SalesRecord()');
    $row = $smt->fetchAll(PDO::FETCH_ASSOC);
    ?>
    <tr>
    <td><?php print_r(json_encode(explode("",$row['0']))); ?><br></td>
    <td><?php print_r($row['1']); ?><br></td> #here i need to static input
    <td><?php print_r($row['2']); ?><br></td> #can do it automatically?
    </tr>
    </table>
    </body>
    </html>
    
  • 然后您将获得OnActivityResult

    上的图像数据
    Intent i = new Intent(Intent.ACTION_PICK, 
    android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
    startActivityForResult(i, RESULT_LOAD_IMAGE);