android-自定義相機(jī)

import android.Manifest;

import android.annotation.SuppressLint;

import android.app.Activity;

import android.content.Intent;

import android.content.pm.PackageManager;

import android.graphics.Bitmap;

import android.graphics.BitmapFactory;

import android.graphics.Matrix;

import android.hardware.Camera;

import android.os.AsyncTask;

import android.os.Environment;

import android.support.annotation.NonNull;

import android.support.v4.content.ContextCompat;

import android.support.v7.widget.GridLayoutManager;

import android.support.v7.widget.LinearLayoutManager;

import android.support.v7.widget.RecyclerView;

import android.view.MotionEvent;

import android.view.Surface;

import android.view.SurfaceHolder;

import android.view.SurfaceView;

import android.view.View;

import android.view.ViewGroup;

import android.widget.ImageView;

import android.widget.LinearLayout;

import android.widget.RelativeLayout;

import android.widget.TextView;

import com.alibaba.android.arouter.launcher.ARouter;

import com.luck.picture.lib.config.PictureConfig;

import com.luck.picture.lib.entity.LocalMedia;

import net.qihoo.corp.iqha.base.ui.activity.IQHABaseActivity;

import net.qihoo.corp.iqha.base.utils.DensityUtils;

import net.qihoo.corp.iqha.base.utils.ToastUtil;

import net.qihoo.corp.iqha.base.utils.logger.Logger;

import net.qihoo.corp.iqha.base.widgets.MDiaglog;

import net.qihoo.corp.iqha.base.widgets.adapter.BaseQuickAdapter;

import net.qihoo.corp.module.base.R;

import net.qihoo.corp.module.base.adapter.TackPhotosAdapter;

import net.qihoo.corp.module.base.config.RoutePath;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.Serializable;

import java.util.ArrayList;

import java.util.List;

import permissions.dispatcher.NeedsPermission;

import permissions.dispatcher.RuntimePermissions;

/**

* author CaiNing

* email oslanka@163.com

* created 2019/10/16 10:30

* version v 1.0

*/

@RuntimePermissions

public class TakeMultiPhotoActivity extends IQHABaseActivity implements SurfaceHolder.Callback {

private Camera mCamera;

? ? private Camera.Parameters mParams;

? ? private SurfaceHolder mSurfaceHolder;

? ? private SurfaceHolder mySurfaceHolder;

? ? private Camera.Size preSize;

? ? private SurfaceView mSurfaceView;

? ? private RelativeLayout layouHolder;

? ? private ImageView oralView;

? ? private int rawX;

? ? private int rawY;

? ? private ImageView ivTackPhoto;

? ? private TextView tvCancel;

? ? private ImageView changeCamera;

? ? private boolean catchOnePhoto;

? ? private int maxPhotos =9;

? ? private Listphotos =new ArrayList<>();

? ? private TextView tvOk;

? ? private RecyclerView recyclerView;

? ? private TackPhotosAdapter tackPhotosAdapter;

? ? private LinearLayout layoutHeader;

? ? @Override

? ? public boolean getTitleBarVisible() {

????????????setImmersionBar(true);

????????????return false;

? ? }

@Override

? ? protected int setLayoutId() {

????????????return R.layout.activity_tack_multi_photo;

? ? }

????@SuppressLint("ClickableViewAccessibility")

????@Override

? ? protected void initListener() {

????????initView();

? ? ? ? int px40 =DensityUtils.dp2px(this, 40);

? ? ? ? layouHolder.setOnClickListener(new View.OnClickListener() {

????????????@Override

? ? ? ? ? ????? public void onClick(View v) {

????????????????????????if (mCamera !=null)

????????????????????????mCamera.autoFocus(null);

? ? ? ? ? ? ? ? ????????RelativeLayout.LayoutParams layoutParams = (RelativeLayout.LayoutParams)oralView.getLayoutParams();

? ? ? ? ? ? ? ????????? layoutParams.setMargins(rawX -px40, rawY -px40, 0, 0);

? ? ? ? ? ? ? ? ????????oralView.setLayoutParams(layoutParams);

? ? ? ? ? ? ? ? ????????oralView.setVisibility(View.VISIBLE);

? ? ? ? ? ? ? ? ????????oralView.postDelayed(new Runnable() {

????????????????????????????????@Override

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?public void run() {

????????????????????????????????????????if (oralView !=null)

????????????????????????????????????????????oralView.setVisibility(View.GONE);

? ? ? ? ? ? ? ? ? ? ????????????????????}

????????????????????????}, 500);

? ? ? ? ? ? }

});

? ? ? ? layouHolder.setOnTouchListener((v, event) -> {

????????????switch (event.getAction()) {

????????????????????case MotionEvent.ACTION_DOWN:

????????????????????????????rawX = (int)event.getRawX();

? ? ? ? ? ? ? ? ? ? ????????rawY = (int)event.getRawY();

? ? ? ? ? ? ? ? ? ? ????????Logger.i("info---->touch--->" +event.getX() +"--->" +event.getY() +"--->" +rawX +"--->" +rawY);

????????????????????????????break;

? ? ? ? ? ? ? ? ? ? ? case MotionEvent.ACTION_UP:

????????????????????????break;

? ? ? ? ? ? ? ? ????????case MotionEvent.ACTION_MOVE:

????????????????????????break;

? ? ? ? ? ? }

????????????return false;

? ? ? ? });

? ? ? ? ivTackPhoto.setOnClickListener(new View.OnClickListener() {

????????????@Override

? ? ? ? ? ? public void onClick(View v) {

????????????????????takePicture();

? ? ? ? ? ? }

});

? ? ? ? tvCancel.setOnClickListener(new View.OnClickListener() {

????????????@Override

? ? ? ? ? ? public void onClick(View v) {

????????????????setResult(RESULT_CANCELED);

? ? ? ? ? ? ? ? finish();

? ? ? ? ? ? }

});

? ? ? ? changeCamera.setOnClickListener(new View.OnClickListener() {

????????????@Override

? ? ? ? ? ? public void onClick(View v) {

????????????????isBack = !isBack;

? ? ? ? ? ? ? ? changeCamera();

? ? ? ? ? ? }

});

? ? ? ? tvOk.setOnClickListener(new View.OnClickListener() {

????????????@Override

? ? ? ? ? ? public void onClick(View v) {

????????????????Listresult =new ArrayList<>();

? ? ? ? ? ? ? ? for (int i =0; i

????????????????????LocalMedia localMedia =new LocalMedia();

? ? ? ? ? ? ? ? ? ? String path =photos.get(i);

? ? ? ? ? ? ? ? ? ? localMedia.setPath(path);

? ? ? ? ? ? ? ? ? ? localMedia.setCompressPath(path);

? ? ? ? ? ? ? ? ? ? result.add(localMedia);

? ? ? ? ? ? ? ? }

Intent intent =new Intent();

? ? ? ? ? ? ? ? intent.putExtra(PictureConfig.EXTRA_RESULT_SELECTION,(Serializable)result);

? ? ? ? ? ? ? ? setResult(RESULT_OK,intent);

? ? ? ? ? ? ? ? finish();

? ? ? ? ? ? }

});

? ? }

public void takePicture() {//對(duì)外暴露的方法荠列,連續(xù)拍照時(shí)調(diào)用

? ? ? ? if (mCamera !=null)

mCamera.takePicture(null, null, jpeg);

? ? ? ? showLoading();

? ? }

@SuppressLint("StaticFieldLeak")

public class SavePictureTask extends AsyncTask {

@SuppressLint("SimpleDateFormat")

@Override

? ? ? ? protected Bitmap doInBackground(byte[]...params) {

byte[]data =params[0];? //回調(diào)的數(shù)據(jù)

? ? ? ? ? ? Bitmap bitmap =BitmapFactory.decodeByteArray(data, 0, data.length);

? ? ? ? ? ? String path =Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM) +File.separator +"Test";

? ? ? ? ? ? File file =new File(path);

? ? ? ? ? ? if (!file.exists()) {//文件不存在就創(chuàng)建

? ? ? ? ? ? ? ? file.mkdir();

? ? ? ? ? ? }

String picPath =file +File.separator +System.currentTimeMillis() +".jpg";

? ? ? ? ? ? File pic =new File(picPath);

? ? ? ? ? ? try {

FileOutputStream mFos =new FileOutputStream(pic);

? ? ? ? ? ? ? ? //壓縮

? ? ? ? ? ? ? ? Matrix matrix =new Matrix();

? ? ? ? ? ? ? ? //旋轉(zhuǎn)90,拍完照的圖片保存之后會(huì)自動(dòng)旋轉(zhuǎn)90度,在這里把圖片給轉(zhuǎn)回去去

? ? ? ? ? ? ? ? matrix.postRotate(90);

? ? ? ? ? ? ? ? // 創(chuàng)建新的圖片

? ? ? ? ? ? ? ? Bitmap resizedBitmap =Bitmap.createBitmap(bitmap, 0, 0,

? ? ? ? ? ? ? ? ? ? ? ? bitmap.getWidth(), bitmap.getHeight(), matrix, true);

? ? ? ? ? ? ? ? resizedBitmap.compress(Bitmap.CompressFormat.JPEG, 85, mFos);

? ? ? ? ? ? ? ? mFos.close();

? ? ? ? ? ? ? ? if (photos.size() <=maxPhotos) {

photos.add(0,picPath);

? ? ? ? ? ? ? ? }

}catch (FileNotFoundException e) {

e.printStackTrace();

? ? ? ? ? ? }catch (IOException e) {

e.printStackTrace();

? ? ? ? ? ? }

return bitmap;

? ? ? ? }

@Override

? ? ? ? protected void onPostExecute(Bitmap bitmap) {

hideLoading();

? ? ? ? ? ? super.onPostExecute(bitmap);

//? ? ? ? ? ? ToastUtil.showToastShort("拍照成功了");

? ? ? ? ? ? layoutHeader.setVisibility(View.VISIBLE);

? ? ? ? ? ? tackPhotosAdapter.notifyItemInserted(0);

? ? ? ? ? ? recyclerView.scrollToPosition(0);

? ? ? ? }

}

private void changeCamera() {

initCamera();

? ? ? ? try {

mCamera.setPreviewDisplay(mySurfaceHolder);

? ? ? ? }catch (IOException ioe) {

ioe.printStackTrace();

? ? ? ? }

mCamera.startPreview();

? ? ? ? mCamera.autoFocus(null);

? ? }

private void initView() {

layouHolder = findViewById(R.id.layout_holder);

? ? ? ? oralView = findViewById(R.id.view_oral);

? ? ? ? ivTackPhoto = findViewById(R.id.iv_tack_photo);

? ? ? ? tvCancel = findViewById(R.id.tv_cancel);

? ? ? ? changeCamera = findViewById(R.id.change_camera);

? ? ? ? recyclerView = findViewById(R.id.recycler_view);

? ? ? ? layoutHeader = findViewById(R.id.layout_header);

? ? ? ? layoutHeader.setVisibility(View.GONE);

? ? ? ? tvOk = findViewById(R.id.tv_ok);

? ? ? ? tackPhotosAdapter =new TackPhotosAdapter(this, photos);

? ? ? ? tackPhotosAdapter.setOnItemClickListener(new BaseQuickAdapter.OnItemClickListener() {

@Override

? ? ? ? ? ? public void onItemClick(BaseQuickAdapter adapter, View view, int position) {

String path =photos.get(position);

? ? ? ? ? ? ? ? ARouter.getInstance().build(RoutePath.PATH_IMAGE_ACTIVITY)

.withString("filePath",path)

.withBoolean("isLocalImage",true)

.withTransition(R.anim.slide_in_right, R.anim.slide_out_left)

.navigation(TakeMultiPhotoActivity.this);

? ? ? ? ? ? }

});

? ? ? ? tackPhotosAdapter.setOnItemChildClickListener(new BaseQuickAdapter.OnItemChildClickListener() {

@Override

? ? ? ? ? ? public void onItemChildClick(BaseQuickAdapter adapter, View view, int position) {

}

});

? ? ? ? recyclerView.setAdapter(tackPhotosAdapter);

? ? ? ? final LinearLayoutManager layoutManager =new LinearLayoutManager(this);

? ? ? ? layoutManager.setOrientation(LinearLayoutManager.HORIZONTAL);

? ? ? ? recyclerView.setLayoutManager(layoutManager);

? ? ? ? initSurface();

? ? }

@Override

? ? public void initData() {

}

private void initSurface() {

mSurfaceView = findViewById(R.id.sf_view);

? ? ? ? mSurfaceHolder =mSurfaceView.getHolder();

? ? ? ? //mSurfaceHolder.setFixedSize(SRC_FRAME_WIDTH, SRC_FRAME_HEIGHT);

? ? ? ? mSurfaceHolder.addCallback(this);

? ? ? ? mSurfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);

? ? ? ? getCameraPosition();

? ? }

private boolean isBack =true;

? ? private void openCamera(SurfaceHolder holder) {

initCamera();

? ? ? ? setCameraAndOpen(holder);

? ? }

private void setCameraAndOpen(SurfaceHolder holder) {

mParams.setPreviewSize(preSize.width, preSize.height);

? ? ? ? mCamera.setParameters(mParams);

? ? ? ? try {

mCamera.setPreviewDisplay(holder);

? ? ? ? }catch (IOException ioe) {

ioe.printStackTrace();

? ? ? ? }

mCamera.startPreview();

? ? ? ? mCamera.autoFocus(null);

? ? }

private void initCamera() {

int mCameraId;//.CAMERA_FACING_FRONT;

//? ? ? ? int cameraNum = Camera.getNumberOfCameras();

//? ? ? ? if (cameraNum > 1)

//? ? ? ? ? ? mCameraId = Camera.CameraInfo.CAMERA_FACING_FRONT;

? ? ? ? releaseCamera(); // release Camera, if not release camera before call camera, it will be locked

? ? ? ? if (isBack) {

mCameraId =iBackCameraIndex;

? ? ? ? }else {

mCameraId =iFontCameraIndex;

? ? ? ? }

mCamera =Camera.open(mCameraId);

? ? ? ? mParams =mCamera.getParameters();

? ? ? ? mParams.setFocusMode(Camera.Parameters.FOCUS_MODE_AUTO);

? ? ? ? setCameraDisplayOrientation(this, 0, mCamera);

? ? ? ? preSize =getCloselyPreSize(true, (int) getScreenWidth(), (int) getScreenHeight(), mParams.getSupportedPreviewSizes());

? ? ? ? Logger.i("----------->size" +preSize.height +"--" +preSize.width);

? ? ? ? float screenWidth = getScreenWidth();

? ? ? ? int localHeight;

? ? ? ? if (preSize.height

localHeight = (int) (screenWidth *preSize.width /preSize.height);

? ? ? ? else localHeight = (int) (screenWidth *preSize.height /preSize.width);

? ? ? ? ViewGroup.LayoutParams layoutParams =mSurfaceView.getLayoutParams();

? ? ? ? layoutParams.height =localHeight;

? ? ? ? mSurfaceView.setLayoutParams(layoutParams);

? ? }

private Camera.PictureCallback jpeg = (data, camera) -> {

if (photos.size() <=maxPhotos) {

new SavePictureTask().execute(data);? //異步保存照片

? ? ? ? ? ? mCamera.startPreview();

? ? ? ? ? ? mCamera.autoFocus(null);

? ? ? ? }else {

//? ? ? ? ? ? ? ? ToastUtil.showToastShort("最多一次拍攝"+maxPhotos+"張照片");

? ? ? ? ? ? MDiaglog.newInstance(TakeMultiPhotoActivity.this).setMMessage("最多一次拍攝" +maxPhotos +"張照片").setMPositiveButton("確定").show();

? ? ? ? }

};

? ? private int iFontCameraIndex =0, iBackCameraIndex =0;

? ? protected void getCameraPosition() {

Camera.CameraInfo cameraInfo =new Camera.CameraInfo();

? ? ? ? int iCameraCnt =Camera.getNumberOfCameras();

? ? ? ? for (int i =0; i

Camera.getCameraInfo(i, cameraInfo);

? ? ? ? ? ? if (cameraInfo.facing ==Camera.CameraInfo.CAMERA_FACING_FRONT) {

iFontCameraIndex = i;

? ? ? ? ? ? }else if (cameraInfo.facing ==Camera.CameraInfo.CAMERA_FACING_BACK) {

iBackCameraIndex = i;

? ? ? ? ? ? }

}

}

@Override

? ? protected void onPause() {

super.onPause();

? ? }

@Override

? ? protected void onResume() {

super.onResume();

? ? }

private void setCameraDisplayOrientation(Activity activity, int cameraId, Camera camera) {

Camera.CameraInfo info =new Camera.CameraInfo();

? ? ? ? Camera.getCameraInfo(cameraId, info);

? ? ? ? int rotation =activity.getWindowManager().getDefaultDisplay()

.getRotation();

? ? ? ? int degrees =0;

? ? ? ? switch (rotation) {

case Surface.ROTATION_0:

degrees =0;

break;

? ? ? ? ? ? case Surface.ROTATION_90:

degrees =90;

break;

? ? ? ? ? ? case Surface.ROTATION_180:

degrees =180;

break;

? ? ? ? ? ? case Surface.ROTATION_270:

degrees =270;

break;

? ? ? ? }

int displayDegree;

? ? ? ? if (info.facing ==Camera.CameraInfo.CAMERA_FACING_FRONT) {

displayDegree = (info.orientation + degrees) %360;

? ? ? ? ? ? displayDegree = (360 - displayDegree) %360;? // compensate the mirror

? ? ? ? }else {

displayDegree = (info.orientation - degrees +360) %360;

? ? ? ? }

camera.setDisplayOrientation(displayDegree);

? ? }

private synchronized void releaseCamera() {

if (mCamera !=null) {

try {

mCamera.setPreviewCallback(null);

? ? ? ? ? ? }catch (Exception e) {

e.printStackTrace();

? ? ? ? ? ? }

try {

mCamera.stopPreview();

? ? ? ? ? ? }catch (Exception e) {

e.printStackTrace();

? ? ? ? ? ? }

try {

mCamera.release();

? ? ? ? ? ? }catch (Exception e) {

e.printStackTrace();

? ? ? ? ? ? }

mCamera =null;

? ? ? ? }

}

public static void open(Activity activity, int requlstCode) {

Intent mIntent =new Intent(activity, TakeMultiPhotoActivity.class);

//? ? ? ? mIntent.setExtrasClassLoader(Action.class.getClassLoader());

? ? ? ? activity.startActivityForResult(mIntent, requlstCode);

? ? }

@NeedsPermission(Manifest.permission.CAMERA)

void getCamera() {

if (this.mySurfaceHolder !=null) {

openCamera(mySurfaceHolder);

? ? ? ? }

}

@Override

? ? public void onRequestPermissionsResult(int requestCode, @NonNull String[]permissions, @NonNull int[]grantResults) {

super.onRequestPermissionsResult(requestCode, permissions, grantResults);

? ? ? ? TakeMultiPhotoActivityPermissionsDispatcher.onRequestPermissionsResult(this, requestCode, grantResults);

? ? }

public static Camera.Size getCloselyPreSize(boolean isPortrait, int surfaceWidth, int surfaceHeight, ListpreSizeList) {

//? ? ? ? surfaceWidth = 1080;

//? ? ? ? surfaceHeight = 1080;

? ? ? ? int reqTmpWidth;

? ? ? ? int reqTmpHeight;

? ? ? ? // 當(dāng)屏幕為垂直的時(shí)候需要把寬高值進(jìn)行調(diào)換,保證寬大于高

? ? ? ? if (isPortrait) {

reqTmpWidth =surfaceHeight;

? ? ? ? ? ? reqTmpHeight =surfaceWidth;

? ? ? ? }else {

reqTmpWidth =surfaceWidth;

? ? ? ? ? ? reqTmpHeight =surfaceHeight;

? ? ? ? }

//先查找preview中是否存在與surfaceview相同寬高的尺寸

? ? ? ? for (Camera.Size size :preSizeList) {

if ((size.width ==reqTmpWidth) && (size.height ==reqTmpHeight)) {

return size;

? ? ? ? ? ? }

}

for (Camera.Size size :preSizeList) {

if ((size.width ==1920) && (size.height ==1080)) {

return size;

? ? ? ? ? ? }

}

// TODO: 2019/9/25? 找一個(gè)比例最接近畔裕,并且最小的

? ? ? ? // 得到與傳入的寬高比最接近的size

? ? ? ? float reqRatio = ((float)reqTmpWidth) /reqTmpHeight;

? ? ? ? float curRatio, deltaRatio;

? ? ? ? float deltaRatioMin =Float.MAX_VALUE;

? ? ? ? Camera.Size retSize =null;

? ? ? ? for (Camera.Size size :preSizeList) {

curRatio = ((float)size.width) /size.height;

? ? ? ? ? ? deltaRatio =Math.abs(reqRatio -curRatio);

? ? ? ? ? ? if (deltaRatio < deltaRatioMin) {

deltaRatioMin =deltaRatio;

? ? ? ? ? ? ? ? retSize =size;

? ? ? ? ? ? }

}

return retSize;

? ? }

@Override

? ? public void surfaceCreated(SurfaceHolder holder) {

this.mySurfaceHolder =holder;

? ? ? ? if (ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA) ==PackageManager.PERMISSION_GRANTED) {

openCamera(holder); // open camera\

? ? ? ? }else {

TakeMultiPhotoActivityPermissionsDispatcher.getCameraWithPermissionCheck(this);

? ? ? ? }

}

@Override

? ? public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {

}

@Override

? ? public void surfaceDestroyed(SurfaceHolder holder) {

}

}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末屋讶,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌阐虚,老刑警劉巖,帶你破解...
    沈念sama閱讀 219,490評(píng)論 6 508
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件启摄,死亡現(xiàn)場(chǎng)離奇詭異稿壁,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)歉备,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,581評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門(mén)傅是,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人蕾羊,你說(shuō)我怎么就攤上這事喧笔。” “怎么了龟再?”我有些...
    開(kāi)封第一講書(shū)人閱讀 165,830評(píng)論 0 356
  • 文/不壞的土叔 我叫張陵书闸,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我吸申,道長(zhǎng)梗劫,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,957評(píng)論 1 295
  • 正文 為了忘掉前任截碴,我火速辦了婚禮梳侨,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘日丹。我一直安慰自己走哺,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,974評(píng)論 6 393
  • 文/花漫 我一把揭開(kāi)白布哲虾。 她就那樣靜靜地躺著丙躏,像睡著了一般。 火紅的嫁衣襯著肌膚如雪束凑。 梳的紋絲不亂的頭發(fā)上晒旅,一...
    開(kāi)封第一講書(shū)人閱讀 51,754評(píng)論 1 307
  • 那天,我揣著相機(jī)與錄音汪诉,去河邊找鬼废恋。 笑死,一個(gè)胖子當(dāng)著我的面吹牛扒寄,可吹牛的內(nèi)容都是我干的鱼鼓。 我是一名探鬼主播,決...
    沈念sama閱讀 40,464評(píng)論 3 420
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼该编,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼迄本!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起课竣,我...
    開(kāi)封第一講書(shū)人閱讀 39,357評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤嘉赎,失蹤者是張志新(化名)和其女友劉穎置媳,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體曹阔,經(jīng)...
    沈念sama閱讀 45,847評(píng)論 1 317
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡半开,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,995評(píng)論 3 338
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了赃份。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片寂拆。...
    茶點(diǎn)故事閱讀 40,137評(píng)論 1 351
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖抓韩,靈堂內(nèi)的尸體忽然破棺而出纠永,到底是詐尸還是另有隱情,我是刑警寧澤谒拴,帶...
    沈念sama閱讀 35,819評(píng)論 5 346
  • 正文 年R本政府宣布尝江,位于F島的核電站,受9級(jí)特大地震影響英上,放射性物質(zhì)發(fā)生泄漏炭序。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,482評(píng)論 3 331
  • 文/蒙蒙 一苍日、第九天 我趴在偏房一處隱蔽的房頂上張望惭聂。 院中可真熱鬧,春花似錦相恃、人聲如沸辜纲。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 32,023評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)耕腾。三九已至,卻和暖如春杀糯,著一層夾襖步出監(jiān)牢的瞬間扫俺,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 33,149評(píng)論 1 272
  • 我被黑心中介騙來(lái)泰國(guó)打工固翰, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留狼纬,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 48,409評(píng)論 3 373
  • 正文 我出身青樓倦挂,卻偏偏與公主長(zhǎng)得像畸颅,于是被迫代替她去往敵國(guó)和親担巩。 傳聞我的和親對(duì)象是個(gè)殘疾皇子方援,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,086評(píng)論 2 355

推薦閱讀更多精彩內(nèi)容