반응형
우리는 카메라를 사용하는 방벙은 두 가지가 있다.
◎ 카메라 앱
◎카메라 API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="utf-8"?>
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp"
tools:context=".MainActivity">
<VideoView
android:id="@+id/vv"
android:layout_width="match_parent"
android:layout_height="400dp" />
<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Recoding video"
android:onClick="clickBtn"/>
</LinearLayout>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
package com.lcw.ex71cameratest3video;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import android.Manifest;
import android.content.Intent;
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.provider.MediaStore;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
import android.widget.VideoView;
public class MainActivity extends AppCompatActivity {
VideoView vv;
Button btn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
vv=findViewById(R.id.vv);
btn=findViewById(R.id.btn);
//용량문제로 무조건 파일로 저장하는 방식을 사용함
//그래서 반드시 외부 저장소에 대한 퍼미션이 필요
if(Build.VERSION.SDK_INT>=Build.VERSION_CODES.M){
int permissionResult=checkSelfPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE);
if(permissionResult== PackageManager.PERMISSION_DENIED){
requestPermissions(new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE},10);
}
}
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
switch (requestCode){
case 10:
if(grantResults[0]==PackageManager.PERMISSION_GRANTED){
Toast.makeText(this, "카메라 기능 사용 가능", Toast.LENGTH_SHORT).show();
btn.setEnabled(true);
}else{
Toast.makeText(this, "카메라 기능 제한", Toast.LENGTH_SHORT).show();
btn.setEnabled(false);
}
break;
}
}
public void clickBtn(View view) {
//비디오 촬영모드로 카메라앱 실행
Intent intent= new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
startActivityForResult(intent,100);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode){
case 100:
if(resultCode==RESULT_OK){
//촬영된 비디오의 파일 경로 얻어오기
Uri uri=data.getData();
vv.setVideoURI(uri);
//비디오뷰를 클릭했을 때 컨트롤 바가 아래에서 올라오도록.
MediaController mediaController= new MediaController(this);
vv.setMediaController(mediaController);
//비디오 실행하기
//비디오는 용량이 크므로 재생 준비에 시간이 걸림
//재생준비완료 리스너를 이용하길 권장
vv.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mediaPlayer) {
}
});
}
break;
}
}
}
|
반응형
'안드로이드 웹앱 콘테츠 개발자 양성(국비지원) > Android 기능' 카테고리의 다른 글
Android Studio(기능) Alarm (4) | 2019.10.15 |
---|---|
Android Studio(기능) Location / Map [Camera -API] (0) | 2019.10.14 |
Android Studio(기능) Location / Map [Camera -2] (0) | 2019.10.14 |
Android Studio(기능) Location / Map [Camera -1] (0) | 2019.10.14 |
Android Studio(기능) Location / Map [Google Map 사용 예제] (0) | 2019.10.11 |
댓글