首頁 > Java > java教程 > 主體

如何將 Android 應用程式中的圖像儲存到圖庫?

Patricia Arquette
發布: 2024-11-04 09:23:02
原創
445 人瀏覽過

How to Save an Image from Your Android App to the Gallery?

如何在Android 中將圖像保存到圖庫

在您的Android 應用程式中,您可能希望允許用戶從您的應用程式程式中保存圖像應用程式到他們的畫廊。操作方法如下:

建立選項選單

為應用程式的選項選單中新增「儲存」選項:

<code class="java">@Override
public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.main_menu, menu);
    return true;
}</code>
登入後複製

在res/menu中/main_menu.xml:

<code class="xml"><menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/menuFinale"
        android:title="Save" />
</menu></code>
登入後複製

儲存影像

在onOptionsItemSelected 方法中,處理「儲存」選項:

<code class="java">@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case R.id.menuFinale:

            // Obtain the image bitmap
            ImageView imgView = (ImageView) findViewById(R.id.image_view);
            imgView.setDrawingCacheEnabled(true);
            Bitmap bitmap = imgView.getDrawingCache();

            // Save the image to the gallery
            String path = MediaStore.Images.Media.insertImage(
                getContentResolver(),
                bitmap,</code>
登入後複製

以上是如何將 Android 應用程式中的圖像儲存到圖庫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板