在android上 想实现一个9宫格类似的界面,但是可以任意拖动其中的某个图标,图标拖动到别的位置时候自动插入到另外两图片之间,然后前面的图标顺序的前移一个位置。。请问高手如何实现不用低级UI,用android的高级控件

解决方案 »

  1.   

    主要是计算问题,记录了每个icon的位置,重新读下,比较简单需要代码 留下mail
      

  2.   


    从网上下一android 的应用程序源码...里面有一个java写 的桌面程序名叫 :  launcher
      

  3.   

    请问楼主你的问题可否解决,如果解决了请帮忙发下代码,谢谢了
    [email protected]
      

  4.   


    楼主有没有解决问题 。我也是遇到这类问题着急,代码能转发下?
    好人有好报  Emai:[[email protected]][/email]另外那个launcher的代码有链接的能发下?
      

  5.   

    楼主解决了吗?解决了可以把代码也发给我一份吗?
    Mail: [email protected]
      

  6.   

    有现成的案例OK!
    http://blog.csdn.net/hellogv/archive/2010/12/14/6075014.aspx
      

  7.   


    <?xml version="1.0" encoding="utf-8"?>  
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
        android:orientation="vertical" android:layout_width="fill_parent"  
        android:layout_height="fill_parent">  
        <HorizontalScrollView android:id="@+id/HorizontalScrollView01"  
            android:layout_height="fill_parent" android:layout_width="fill_parent">  
            <ListView android:id="@+id/ListView01" android:layout_height="wrap_content"  
                android:layout_width="wrap_content"></ListView>  
        </HorizontalScrollView>  
    </LinearLayout>  package com.testMyListView;   
    import java.util.ArrayList;   
    import com.testMyListView.TableAdapter.TableCell;   
    import com.testMyListView.TableAdapter.TableRow;   
    import android.app.Activity;   
    import android.os.Bundle;   
    import android.view.View;   
    import android.widget.AdapterView;   
    import android.widget.ListView;   
    import android.widget.LinearLayout.LayoutParams;   
    import android.widget.Toast;   
    /**  
     * @author hellogv  
     */  
    public class testMyListView extends Activity {   
        /** Called when the activity is first created. */  
        ListView lv;   
        @Override  
        public void onCreate(Bundle savedInstanceState) {   
            super.onCreate(savedInstanceState);   
            setContentView(R.layout.main);   
            this.setTitle("ListView自适应实现表格---hellogv");   
            lv = (ListView) this.findViewById(R.id.ListView01);   
            ArrayList<TableRow> table = new ArrayList<TableRow>();   
            TableCell[] titles = new TableCell[5];// 每行5个单元   
            int width = this.getWindowManager().getDefaultDisplay().getWidth()/titles.length;   
            // 定义标题   
            for (int i = 0; i < titles.length; i++) {   
                titles[i] = new TableCell("标题" + String.valueOf(i),    
                                        width + 8 * i,   
                                        LayoutParams.FILL_PARENT,    
                                        TableCell.STRING);   
            }   
            table.add(new TableRow(titles));   
            // 每行的数据   
            TableCell[] cells = new TableCell[5];// 每行5个单元   
            for (int i = 0; i < cells.length - 1; i++) {   
                cells[i] = new TableCell("No." + String.valueOf(i),   
                                        titles[i].width,    
                                        LayoutParams.FILL_PARENT,    
                                        TableCell.STRING);   
            }   
            cells[cells.length - 1] = new TableCell(R.drawable.icon,   
                                                    titles[cells.length - 1].width,    
                                                    LayoutParams.WRAP_CONTENT,   
                                                    TableCell.IMAGE);   
            // 把表格的行添加到表格   
            for (int i = 0; i < 12; i++)   
                table.add(new TableRow(cells));   
            TableAdapter tableAdapter = new TableAdapter(this, table);   
            lv.setAdapter(tableAdapter);   
            lv.setOnItemClickListener(new ItemClickEvent());   
        }   
        class ItemClickEvent implements AdapterView.OnItemClickListener {   
            @Override  
            public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,   
                    long arg3) {   
                Toast.makeText(testMyListView.this, "选中第"+String.valueOf(arg2)+"行", 500).show();   
            }   
        }   
    }  package com.testMyListView;   
    import java.util.List;   
    import android.content.Context;   
    import android.graphics.Color;   
    import android.view.Gravity;   
    import android.view.View;   
    import android.view.ViewGroup;   
    import android.widget.BaseAdapter;   
    import android.widget.ImageView;   
    import android.widget.LinearLayout;   
    import android.widget.TextView;   
    public class TableAdapter extends BaseAdapter {   
        private Context context;   
        private List<TableRow> table;   
        public TableAdapter(Context context, List<TableRow> table) {   
            this.context = context;   
            this.table = table;   
        }   
        @Override  
        public int getCount() {   
            return table.size();   
        }   
        @Override  
        public long getItemId(int position) {   
            return position;   
        }   
        public TableRow getItem(int position) {   
            return table.get(position);   
        }   
        public View getView(int position, View convertView, ViewGroup parent) {   
            TableRow tableRow = table.get(position);   
            return new TableRowView(this.context, tableRow);   
        }   
        /**  
         * TableRowView 实现表格行的样式  
         * @author hellogv  
         */  
        class TableRowView extends LinearLayout {   
            public TableRowView(Context context, TableRow tableRow) {   
                super(context);   
                   
                this.setOrientation(LinearLayout.HORIZONTAL);   
                for (int i = 0; i < tableRow.getSize(); i++) {//逐个格单元添加到行   
                    TableCell tableCell = tableRow.getCellValue(i);   
                    LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(   
                            tableCell.width, tableCell.height);//按照格单元指定的大小设置空间   
                    layoutParams.setMargins(0, 0, 1, 1);//预留空隙制造边框   
                    if (tableCell.type == TableCell.STRING) {//如果格单元是文本内容   
                        TextView textCell = new TextView(context);   
                        textCell.setLines(1);   
                        textCell.setGravity(Gravity.CENTER);   
                        textCell.setBackgroundColor(Color.BLACK);//背景黑色   
                        textCell.setText(String.valueOf(tableCell.value));   
                        addView(textCell, layoutParams);   
                    } else if (tableCell.type == TableCell.IMAGE) {//如果格单元是图像内容   
                        ImageView imgCell = new ImageView(context);   
                        imgCell.setBackgroundColor(Color.BLACK);//背景黑色   
                        imgCell.setImageResource((Integer) tableCell.value);   
                        addView(imgCell, layoutParams);   
                    }   
                }   
                this.setBackgroundColor(Color.WHITE);//背景白色,利用空隙来实现边框   
            }   
        }   
        /**  
         * TableRow 实现表格的行  
         * @author hellogv  
         */  
        static public class TableRow {   
            private TableCell[] cell;   
            public TableRow(TableCell[] cell) {   
                this.cell = cell;   
            }   
            public int getSize() {   
                return cell.length;   
            }   
            public TableCell getCellValue(int index) {   
                if (index >= cell.length)   
                    return null;   
                return cell[index];   
            }   
        }   
        /**  
         * TableCell 实现表格的格单元  
         * @author hellogv  
         */  
        static public class TableCell {   
            static public final int STRING = 0;   
            static public final int IMAGE = 1;   
            public Object value;   
            public int width;   
            public int height;   
            private int type;   
            public TableCell(Object value, int width, int height, int type) {   
                this.value = value;   
                this.width = width;   
                this.height = height;   
                this.type = type;   
            }   
        }   
    }  
    以上代码来自:张国威博客,所有人为张国威