如何在 Android 中以程式設計方式截圖?


此示例演示瞭如何在 Android 中以程式設計方式截圖。

步驟 1 - 在 Android Studio 中建立一個新專案,轉到檔案 ⇒ 新建專案,並填寫所有必要的資訊以建立新專案。

步驟 2 - 將以下程式碼新增到 res/layout/activity_main.xml 中。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   style="?attr/actionButtonStyle"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:id="@+id/main">
   <Button
      android:id="@+id/button"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_centerHorizontal="true"
      android:layout_marginTop="30dp"
      android:text="Take screenshot"/>
   <ImageView
      android:id="@+id/imageView"
      android:layout_below="@id/button"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:layout_centerHorizontal="true"
      android:layout_marginTop="30dp"
      android:scaleType="fitCenter"/>
</RelativeLayout>

步驟 3 - 建立一個新的 Java 類,並在 screenshot.java 中新增以下程式碼

import android.graphics.Bitmap;
import android.view.View;
public class Screenshot{
   public static Bitmap takescreenshot(View v) {
      v.setDrawingCacheEnabled(true);
      v.buildDrawingCache(true);
      Bitmap b = Bitmap.createBitmap(v.getDrawingCache());
      v.setDrawingCacheEnabled(false);
      return b;
   }
   public static Bitmap takescreenshotOfRootView(View v) {
      return takescreenshot(v.getRootView());
   }
}

步驟 4 - 將以下程式碼新增到 src/MainActivity.java 中

import android.graphics.Bitmap;
import android.graphics.Color;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
public class MainActivity extends AppCompatActivity {
   private View main;
   private ImageView imageView;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      main = findViewById(R.id.main);
      imageView = (ImageView) findViewById(R.id.imageView);
      Button btn = (Button) findViewById(R.id.button);
      btn.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View view) {
            Bitmap b = Screenshot.takescreenshotOfRootView(imageView);
            imageView.setImageBitmap(b);
            main.setBackgroundColor(Color.parseColor("#999999"));
         }
      });
   }
}

步驟 5 - 將以下程式碼新增到 androidManifest.xml 中

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="app.com.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

讓我們嘗試執行您的應用程式。我假設您已將您的實際 Android 移動裝置連線到您的計算機。要從 Android Studio 執行應用程式,請開啟您的專案中的一個活動檔案,然後單擊工具欄中的執行  圖示。選擇您的移動裝置作為選項,然後檢查您的移動裝置,它將顯示您的預設螢幕 -

點選 這裡 下載專案程式碼。

更新於: 2019年7月31日

563 次瀏覽

開啟你的 職業生涯

透過完成課程獲得認證

開始學習
廣告