OLD | NEW |
---|---|
(Empty) | |
1 package org.chromium.customtabsdemos; | |
2 import android.content.Intent; | |
3 import android.os.Bundle; | |
4 import android.provider.MediaStore; | |
5 import android.support.v7.app.AppCompatActivity; | |
6 | |
7 public class Camera extends AppCompatActivity { | |
Ian Wen
2016/03/16 01:35:30
Rename it to CameraActivity.
BigBossZhiling
2016/03/18 00:59:07
Done.
| |
8 @Override | |
9 protected void onCreate(Bundle savedInstanceState) { | |
10 super.onCreate(savedInstanceState); | |
11 Intent camera = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); | |
12 startActivity(camera); | |
13 finish(); | |
14 } | |
15 } | |
OLD | NEW |