(一)上传图片到服务器一 ---------------------------------Android代码
(二)上传图片到服务器二---------------------------------Android 系统7.0以上调用相机兼容问题
(三)上传图片到服务器三 -----------------------------------后台服务器代码
一、相关知识
①Android权限申请
②网络访问框架OKHttp
③内存溢出问题:图片压缩
④Android 系统7.0以上调用系统相机无效
⑤有关图片上传过程中遇到的内存溢出问题
二、效果展示
二、代码
①HTML
1 <LinearLayout 2 android:layout_width="match_parent" 3 android:layout_height="wrap_content" 4 android:orientation="vertical" 5 android:background="@color/white" 6 > 7 <android.support.v7.widget.RecyclerView 8 android:id="@+id/rvPic" 9 android:layout_width="wrap_content" 10 android:layout_height="match_parent" 11 android:layout_gravity="center_horizontal"> 12 13 </android.support.v7.widget.RecyclerView> 14 15 <TextView 16 android:id="@+id/tvNum" 17 android:layout_width="wrap_content" 18 android:layout_height="wrap_content" 19 android:text="0/8" 20 android:textColor="#666666" 21 android:layout_gravity="right|bottom" 22 android:paddingRight="@dimen/dp_10"/> 23 24 25 </LinearLayout> 26 <Button 27 28 android:id="@+id/btn_Enter" 29 android:layout_width="match_parent" 30 android:layout_height="@dimen/dp_45" 31 android:layout_alignParentBottom="true" 32 android:background="@drawable/selecter_button" 33 android:text="确认上传" 34 android:textColor="@color/inButtonText" 35 android:textSize="@dimen/dp_18" />