(android控制項)GridView控制項開發總結

來源:互聯網
上載者:User
文章目錄
  • 先上效果
  • 下面是具體實現
先上效果

:具體應用下載:安卓市場

碰到問題1 用SimpleAdapter 綁定資料時,Item中必須圖片在前,文字在後

              原因不明

問題2  設定Item 中選擇是,總包含部分系統帶的綠色背景

         解決 設定GridView的listSelector的顏色值和背景一致

下面是具體實現

1 介面

   <GridView                      android:listSelector="#FAF4FF"                      android:id="@+id/GridView"                      android:layout_width="fill_parent"                      android:layout_height="fill_parent"                      android:columnWidth="140dp"                      android:padding="0dp"                      android:numColumns="2"                      android:stretchMode="columnWidth" >                </GridView>

griditem 介面

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="fill_parent"android:background="@drawable/itemselect"android:layout_height="wrap_content"android:padding="10dp"><ImageView    android:layout_width="130dp"    android:background="@drawable/imgbar"    android:id="@+id/ItemImage"    android:adjustViewBounds="true"    android:padding="1dp"    android:layout_height="108dp"    android:layout_centerHorizontal="true"/><TextView    android:layout_width="wrap_content"    android:layout_height="27dp"    android:layout_marginBottom="10dp"    android:layout_below="@+id/ItemImage"    android:textColor="#000000"    android:textSize="19sp"    android:id="@+id/ItemText"    android:layout_centerHorizontal="true"/></RelativeLayout>

 

後台資料繫結:

ArrayList<HashMap<String, Object>> meumList = new ArrayList<HashMap<String, Object>>();        HashMap map = new HashMap<String, Object>();          map.put("ItemImage", R.drawable.f11);          map.put("ItemText", "松鼠桂魚");          meumList.add(map);                   SimpleAdapter saItem = new SimpleAdapter(this,                  meumList, //資料來源                  R.layout.griditem, //xml實現                  new String[]{"ItemImage","ItemText"}, //對應map的Key                  new int[]{R.id.ItemImage,R.id.ItemText});  //對應R的Id                 //添加Item到網格中                gridview.setAdapter(saItem);                //添加點擊事件                gridview.setOnItemClickListener(                    new OnItemClickListener()                    {                                              @Override                        public void onItemClick(AdapterView<?> arg0, View arg1,                                int arg2, long arg3) {                                                            Intent intent = new Intent();                                intent.putExtra("index",arg2);                                intent.setClass(Main.this, Detail.class);                                startActivity(intent);                                                    }                    }                );
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.