
Android
huihui_go2014
这个作者很懒,什么都没留下…
展开
-
使用HttpClient MultipartEntity 上传图片 类似于表单提交
1.如果你使用Android studio 开发的话 并且你的api版本是,21以上的话 HttpClient 这个是过时的方法 不会被识别 需要在buile.gradle里面添加: compile 'org.apache.httpcomponents:httpcore:4.4.5' 2.解决以上问题.具体代码如下: /** * 请求地址:api/Mobile/upload原创 2016-08-30 14:10:00 · 726 阅读 · 0 评论 -
. 报错 specified child already has a parent. You must call removeView() on the child's parent first
在做scrollview 滑动停靠的时候 需要addView 报错 其实在做viewpager的时候也遇到过类似的问题 具体报错如下: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child’s parent f原创 2017-09-21 10:47:27 · 435 阅读 · 0 评论 -
Caused by: android.view.InflateException: android.support.design.widget.CoordinatorLayout
Caused by: android.view.InflateException: Binary XML file line #121: Error inflating class android.support.design.widget.CoordinatorLayout 遇到这个问题 需要查看moudel的版本: compile ‘com.android.support:appco原创 2017-09-21 11:35:33 · 550 阅读 · 0 评论 -
Android 7.0 调取相机崩溃 android.os.FileUriExposedException
/** * 选择相机 */ private void showCameraAction() { Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); if (cameraIntent.resolveActivity(getPackageManager(原创 2017-10-10 10:42:06 · 350 阅读 · 0 评论