Android
 Computer >> コンピューター >  >> プログラミング >> Android

Androidアプリでカメラを操作する方法は?


この例は、Androidアプリでカメラを操作する方法を示しています。

ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。

ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:app="https://schemas.android.com/apk/res-auto"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity">
   <Button
      android:id="@+id/button1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentBottom="true"
      android:layout_centerHorizontal="true"
      android:text="Take a Photo" >
   </Button>
   <ImageView
      android:id="@+id/imageView1"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:layout_above="@+id/button1"
      android:layout_alignParentTop="true"
      >
   </ImageView>
</RelativeLayout>

ステップ3 −次のコードをsrc / MainActivity.java

に追加します
package com.example.myapplication;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
public class MainActivity extends AppCompatActivity {
   private static final int CAMERA_REQUEST=1888;
   ImageView imageView;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      imageView=(ImageView) this.findViewById(R.id.imageView1);
      Button photoButton=(Button) this.findViewById(R.id.button1);
      photoButton.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            Intent cameraIntent=new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
            startActivityForResult(cameraIntent, CAMERA_REQUEST);
         }
      });
   }
   protected void onActivityResult(int requestCode, int resultCode, Intent data) {
      if (requestCode == CAMERA_REQUEST) {
         Bitmap photo=(Bitmap) data.getExtras().get("data");
         imageView.setImageBitmap(photo);
      }
   }
}

ステップ4 −次のコードをManifests / AndroidManifest.xml

に追加します
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android" package="com.example.myapplication">
   <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からアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-

Androidアプリでカメラを操作する方法は?

Androidアプリでカメラを操作する方法は?


  1. Androidでリアカメラを使って自分撮りをする方法

    Androidの前面カメラを使用する利点は、自分撮りのポーズをとったり、全員がスナップに収まるかどうかを確認したりできることです。ただし、欠点は、背面カメラよりも解像度が低いカメラを使用していることです。さまざまな携帯電話で優れた解像度で素晴らしい自撮り写真を撮ることができますが、背面のカメラが提供する高品質が必要な場合は、次の方法を使用して、Android携帯電話の背面カメラで簡単に自撮り写真を撮ることができます。 1。試行錯誤による リアカメラで写真を撮る最も簡単な方法は、完璧なショットの位置を推測し、試行錯誤することです。写真を撮り、それがどのようになったかを見て、それに応じてデバイス

  2. Androidでカメラのシャッター音を無効にする方法

    Androidデバイスで写真をキャプチャするたびに、写真が正常にキャプチャされたことを確認するシャッター音が聞こえます。その音はそれほどうるさくはありませんが、たとえば赤ちゃんなど、写真を撮っている敏感な物体の気を散らす可能性があります。これは、超高感度で、デバイスのシャッター音のような小さな音でも影響を受ける可能性のあるオブジェクトの写真を撮影する写真家にとって、実際には大きな問題です。 残念ながら、ほとんどのAndroidデバイスのデフォルトのカメラアプリには、シャッター音を無効にするオプションがありません。ただし、無音を壊さずに必要なものをキャプチャできるように、サウンドを無効にするの