文章标题

这是一级标题

这是二级标题

这是三级标题

这是四级标题

重点内容
强调内容
百度首页的哈

无序列表
  • 无序列表1
  • 无序列表2
  • 无序列表3

    1. 有序列表1
    2. 有序列表2
/** * 通过暂存路径取得图片 */
FileInputStream fis = null;
Bitmap bitmap = null;
try {
    fis = new FileInputStream(mFilePath);
    bitmap = BitmapFactory.decodeStream(fis);
} catch (FileNotFoundException e) {
    e.printStackTrace();
} finally {
    if (fis != null) {
        try {
            fis.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
<RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent">

    <LinearLayout  android:id="@+id/ll" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:orientation="horizontal">

        <Button  android:id="@+id/btn_switch_camera" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="center" android:onClick="switchCamera" android:text="切换摄像头"/>

        <Button  android:id="@+id/btn_capture" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="center" android:onClick="capture" android:text="拍照"/>
    </LinearLayout>

    <SurfaceView  android:id="@+id/sv_camera" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@id/ll" android:text="camera"/>

</RelativeLayout>  

你可能感兴趣的:(文章标题)