Android自定义动态布局 — 多图片上传

Android自定义动态布局 — 多图片上传

本文介绍Android中动态布局添加图片,多图片上传。

项目中效果图:

  

技术点:

1.动态添加格局中的线条和添加图片的+号

2.多张图片异步上传

首先来看一下布局文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#f2f2f2" >

    <LinearLayout
        android:id="@+id/layout_CONTENT"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#f2f2f2"
        android:orientation="vertical"
        android:padding="5dp" >

        <!-- 布局由程序动态生成 -->

        <LinearLayout
            android:id="@+id/layout_container"
            android:layout_width="300dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_margin="5dp"
            android:background="#cbcbcb"
            android:orientation="vertical"
            android:padding="0.2px" />

        <TextView
            android:id="@+id/text_no_data"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="20dp"
            android:text="@string/text_picture_upload"
            android:textSize="16dp" />
    </LinearLayout>

</LinearLayout>

布局很简单,主要是id为layout_container的一个LinearLayout作为父布局。

横向的线条和纵向的线条布局也很简单:

<View xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="1px"
    android:background="#cbcbcb" />
<View xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="1px"
    android:layout_height="match_parent"
    android:background="#cbcbcb" />

下面是动态生成布局的实现方式:

private void initUI() {
        setContentView(R.layout.activity_main);
        //setTitle(R.string.button_service_upload_picture);
        //showBackwardView(R.string.button_backward, true);
        //showForwardView(R.string.button_upload,true);

        //最顶层父布局
        mLayout = (ViewGroup) findViewById(R.id.layout_container);

        final int count = 9;    //9格
        final int rowCount = (count + 2) / 3;

        for (int i = 0; i < rowCount; i++) {

            if (i != 0) {
                //加载横向布局线条
                View.inflate(this, R.layout.layout_line_horizonal, mLayout);
            }
            //创建布局对象,设置按下颜色
            final LinearLayout linearLayout = new LinearLayout(this);
            linearLayout.setBackgroundResource(R.drawable.row_selector);

            for (int j = 0; j < 3; j++) {

                if (j != 0) {
                    //加载内层纵向布局线条
                    View.inflate(this, R.layout.layout_line_vertical, linearLayout);
                }

                ImageButton imageButton = new ImageButton(this);
                imageButton.setBackgroundResource(R.drawable.row_selector);
                imageButton.setTag(TAG);
                imageButton.setOnClickListener(this);
                imageButton.setEnabled(false);
                LinearLayout.LayoutParams layoutParams =
                        new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1.0f);
                //添加到linearLayout布局中
                linearLayout.addView(imageButton, layoutParams);

                //将imageButton对象添加到列表
                mImageButtonList.add(imageButton);
            }

            DisplayManager manager = DisplayManager.getInstance();
            LayoutParams layoutParams = new LayoutParams(LayoutParams.MATCH_PARENT, manager.dipToPixel(100));
            //将View添加到总父布局
            mLayout.addView(linearLayout, layoutParams);
        }
        //外层设置ImageButton属性
        final ImageButton currentImageButton = mImageButtonList.get(mCurrent);
        currentImageButton.setImageResource(R.drawable.ic_add_picture);
        currentImageButton.setScaleType(ScaleType.CENTER);
        currentImageButton.setEnabled(true);

    }

图片上传功能:

 private class UploadPictureTask extends AsyncTask<List<String>, Integer, String> {

        /* (non-Javadoc)
         * @see android.os.AsyncTask#doInBackground(Params[])
         */
        @Override
        protected String doInBackground(List<String>... params) {
            final List<String> pictureList = params[0];
            for (int i = 0, len = pictureList.size(); i < len; i++) {
                final File file = new File(pictureList.get(i));
                //final String response = ApacheHttpUtils.post(mUrlPrefix + "/upload", new File[] {file});
                // 解析,存储
                //final UploadInfo upload = new UploadParser().parse(response).getData();
                /*if (upload != null) {
                    final String url = upload.getUrl();
                    if (url != null) {
                        mPictureUrlList.add(url);
                    }
                }*/
                publishProgress(i);
            }
            return null;
        }

        /* (non-Javadoc)
         * @see android.os.AsyncTask#onProgressUpdate(Progress[])
         */
        @Override
        protected void onProgressUpdate(Integer... values) {

        }

        /* (non-Javadoc)
         * @see android.os.AsyncTask#onPostExecute(java.lang.Object)
         */
        @Override
        protected void onPostExecute(String result) {
            //addPictures();
            super.onPostExecute(result);
        }
    }

注:类中声明了三个列表去保存之前所操作的记录

mImageButtonList = new ArrayList<ImageButton>();
        mPicturePathList = new ArrayList<String>();
        mPictureUrlList = new ArrayList<String>();

关于细节大家感兴趣的下载源码学习吧。

欢迎下载源码:http://download.csdn.net/download/gao_chun/8776533

转载请注明.

时间: 2024-10-06 01:59:16

Android自定义动态布局 — 多图片上传的相关文章

Toast 自定义布局 完成图片上传提示

功能实现 : Activiyt : package com.lvche.lvchedingdang.activity.api_calling; import android.app.Activity; import android.app.AlertDialog; import android.content.ContentValues; import android.content.DialogInterface; import android.content.Intent; import a

Android简单实现将手机图片上传到server中

在本例中.将会简单的实现安卓手机将图片上传到server中.本例使用到了 server端:PHP+APACHE 客户端:JAVA 先简单实现一下server端的上传并測试上传效果,看实例 <?php if(empty($_GET['submit'])){?> <form enctype="multipart/form-data" action="<?php $_SERVER['PHP_SELF']? >?submit=1" method

android之调用webservice 实现图片上传

转:http://www.cnblogs.com/top5/archive/2012/02/16/2354517.html public void testUpload(){ try{ String srcUrl = "/sdcard/"; //路径 String fileName = "aa.jpg"; //文件名 FileInputStream fis = new FileInputStream(srcUrl + fileName); ByteArrayOutp

android自定义View实现图片上传进度显示(仿手机QQ上传效果)

首先看下我们想要实现的效果如下图(qq聊天中发送图片时的效果): 再看一下我实现的效果: 1.效果已经看见了,下面我们来实现它.首先我创建一个android工程ProgressImageView.然后我们重写ImageView控件,创建ProcessImageView类代码如下: package com.example.processimageview; import android.annotation.SuppressLint; import android.content.Context;

android自定义ImageView仿图片上传

Activity代码 1 public class MainActivity extends AppCompatActivity {   2     ProcessImageView processImageView =null;   3     int progress=0;   4    5     @Override   6     protected void onCreate(Bundle savedInstanceState) {   7         super.onCreate

Android图片上传(头像裁切+原图原样)

还是那句话,最近项目比较忙拖了很久这篇文章终于完成了! 先看一下效果图: (一)头像裁切.上传服务器(效果图) 一般都是有圆形显示头像的,这里我自定义了一个ImageView,页面很干净但是看着很上档次吧! 点击头像从底部弹出一个对话框,提示用户头像来自相机或者相册,这都是常规流程. 上传完成后默认的"程序员头像"换成了萌妹子 (二)普通图片上传服务器(效果图) 模仿QQ空间发动态的布局随意捏造一个界面出来 点击添加图片从底部弹出一个对话框,提示用户图片来自相机或者相册,这也都是常规流

Android开发中使用七牛云存储进行图片上传下载

Android开发中的图片存储本来就是比较耗时耗地的事情,而使用第三方的七牛云,便可以很好的解决这些后顾之忧,最近我也是在学习七牛的SDK,将使用过程在这记录下来,方便以后使用. 先说一下七牛云的存储原理,上面这幅图片是官方给出的原理图,表述当然比较清晰了.可以看出,要进行图片上传的话可以分为五大步: 1. 客户端用户登录到APP的账号系统里面: 2. 客户端上传文件之前,需要向业务服务器申请七牛的上传凭证,这个凭证由业务服务器使用七牛提供的服务端SDK生成: 3. 客户端使用七牛提供的客户端S

Jquery自定义图片上传插件

1 概述 编写后台网站程序大多数用到文件上传,可是传统的文件上传控件不是外观不够优雅,就是性能不太好看,翻阅众多文件上传控件的文章,发现可以这样去定义一个文件上传控件,实现的文件上传的效果图如下: 2.该图片上传插件实现功能如下: 1>能够异步上传,上传成功之后,服务器返回响应结果:能够定义上传前和上传后自定义处理方式: 2>能够实现文件格式判断,过滤非图片文件: 3>服务端能够过滤重复上传的图片: 3.页面代码分析: 1>.Jquery图片上传插件代码如下: // 选中文件, 提

使用百度UMeditor富文本编辑器,修改自定义图片上传,修改源码

富文本编辑器,不多说了,这个大家应该都用到过,至于用到的什么版本,那就分很多种 CKEditor:很早以前叫FCK,那个时候也用过,现在改名了,比较流行的一个插件,国外很多公司在用 UEDITOR:百度开发的插件,lite版是UM EasyUI编辑器:用easyUI的都懂,基本上肯定用到 其他的富文本编辑器就不说了,前两个小编我用的比较多 本来我是比较倾向于CKEditor,但是这个插件不支持图片上传,图片功能只能链接过去,而不能在控件本身中上传,所以就选择了UMeditor 为啥选择UM,不选