我提到Grafika's CameraCaptureActivity录制视频,同时显示相机预览。
我对代码所做的更改(相关)是 -
用户点击按钮即可启动PreferencesActivity
,选择首选的相机分辨率(存储width
和height
值)并点击"返回"按钮返回CameraCaptureActivity
。
使用openCamera
方法 - 而不是硬编码width
和height
我从SharedPreferences
AspectFrameLayout's
属性设置为android:background="@android:color/holo_blue_bright"
。因此预览与AspectFrameLayout
当大小从较大的分辨率更改为较小的分辨率时,会出现此问题。
小屏幕(HTC One M7 / Xperia SP)
在较大的屏幕(三星Galaxy Tab S / Nexus 9)中 -
我注意到这是因为onSurfaceChanged
被调用了两次。第一次width
和height
的值不正确,第二次的值正确。
但是,如果我离开活动并返回它而不做任何更改,布局看起来很好。 (比如转到PreferencesActivity
并点击"返回"而不更改分辨率。)
我在AndroidManifest.xml
-
<activity android:name=".activity.camera.CameraCaptureActivity"
android:launchMode="singleInstance"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.Holo.Light.NoActionBar">
</activity>
编辑:仅在预览时出现此问题。录制的视频大小正确。
编辑2:这是我的layout.xml
<RelativeLayout xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/cameracapturescreen_rootparent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black"
tools:context="com.myapp.CameraCaptureActivity">
<com.myapp.activity.camera.PreviewFrameLayout
android:id="@+id/surfaceview_framelayout"
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:background="@android:color/holo_blue_bright"
android:layout_height="wrap_content">
<android.opengl.GLSurfaceView
android:id="@+id/cameraPreview_surfaceView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="left"/>
</com.myapp.activity.camera.PreviewFrameLayout>
我确定我传递了正确的值来设置视图的宽度和高度,因为如果我离开活动并返回到它而不做任何更改,则预览设置正确。 (比如转到其他活动并点击&#34;返回&#34;返回CameraCaptureActivity
。)
答案 0 :(得分:1)
用此打开相机
Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
i.putExtra(MediaStore.EXTRA_OUTPUT, MyFileContentProvider.CONTENT_URI);
startActivityForResult(i, CAMERA_RESULT);
这是MyFileContentProvider类
public class MyFileContentProvider extends ContentProvider {
public static final Uri CONTENT_URI = Uri.parse("content://com.algorithmapps.dmsimagesave/");
private static final HashMap<String, String> MIME_TYPES = new HashMap<String, String>();
static {
MIME_TYPES.put(".jpg", "image/jpeg");
MIME_TYPES.put(".jpeg", "image/jpeg");
}
@Override
public boolean onCreate() {
try {
File mFile = new File(getContext().getFilesDir(), "newImage.jpg");
if(!mFile.exists()) {
mFile.createNewFile();
}
getContext().getContentResolver().notifyChange(CONTENT_URI, null);
return (true);
} catch (Exception e) {
e.printStackTrace();
return false;
}
}
@Override
public String getType(Uri uri) {
String path = uri.toString();
for (String extension : MIME_TYPES.keySet()) {
if (path.endsWith(extension)) {
return (MIME_TYPES.get(extension));
}
}
return (null);
}
@Override
public ParcelFileDescriptor openFile(Uri uri, String mode)
throws FileNotFoundException {
File f = new File(getContext().getFilesDir(), "newImage.jpg");
if (f.exists()) {
return (ParcelFileDescriptor.open(f,
ParcelFileDescriptor.MODE_READ_WRITE));
}
throw new FileNotFoundException(uri.getPath());
}
@Override
public Cursor query(Uri url, String[] projection, String selection,
String[] selectionArgs, String sort) {
throw new RuntimeException("Operation not supported");
}
@Override
public Uri insert(Uri uri, ContentValues initialValues) {
throw new RuntimeException("Operation not supported");
}
@Override
public int update(Uri uri, ContentValues values, String where,
String[] whereArgs) {
throw new RuntimeException("Operation not supported");
}
@Override
public int delete(Uri uri, String where, String[] whereArgs) {
throw new RuntimeException("Operation not supported");
}
}
在onActivityResultMethod中获取这样的图像
if (resultCode == RESULT_OK && requestCode == CAMERA_RESULT) {
File out = new File(getFilesDir(), "newImage.jpg");
if(!out.exists()) {
Toast.makeText(getBaseContext(),
"Error while capturing image", Toast.LENGTH_LONG)
.show();
}
originalBitmap = BitmapFactory.decodeFile(out.getAbsolutePath());
}
比使用此代码调整位图大小,这里我调整200宽* 200高度
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
Bitmap resizedBitmap = Bitmap.createScaledBitmap(originalBitmap, 200, 200, false);
此方法不会让您调整大小的图像失真。 希望它有所帮助。
答案 1 :(得分:1)
如果问题出在预览中,我不清楚你要说的是什么..那么你可以在你的开放式摄像机方法中使用以下代码
在 openCamera()方法中添加此内容代码,我只是检查了这一点...希望这有帮助
if (this.getResources().getConfiguration().orientation != Configuration.ORIENTATION_LANDSCAPE) {
mCamera.setDisplayOrientation(90);
} else {
mCamera.setDisplayOrientation(180);
}
在 handleSetSurfaceTexture()方法中添加此代码
if (this.getResources().getConfiguration().orientation != Configuration.ORIENTATION_LANDSCAPE) {
mCamera.setDisplayOrientation(90);
} else {
mCamera.setDisplayOrientation(180);
}
Camera.Parameters parms = mCamera.getParameters();
CameraUtils.choosePreviewSize(parms, mCameraPreviewWidth, mCameraPreviewHeight);
// Give the camera a hint that we're recording video. This can have a big
// impact on frame rate.
parms.setRecordingHint(true);
mCamera.setParameters(parms);
和onPause()
中的这部分代码InputMethodManager imm = (InputMethodManager)getSystemService(
Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(((EditText)findViewById(R.id.username)).getWindowToken(), 0);
if(imm.isAcceptingText()) {
Intent intent = new Intent(this, CameraCaptureActivity.class);
startActivity(intent);
}