Android实现拍照并上传(2)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#aaaaaa"
    android:orientation="vertical" >

<Button
        android:id="@+id/my_camare_button"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="点击拍照" />
      <Button
        android:id="@+id/upload_image"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="上传相片"
        />

<ImageView
        android:id="@+id/my_img_view"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent" />


</LinearLayout>

上面已经实现拍照并显示了,可以在ImageView旁边用放一个控件,用来美化相片,再上传效果更好,哈哈。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/8dcbf9f44c1591994f0c658d5fd7bcdf.html