Android中使用ListView實現自適應表格

來源:互聯網
上載者:User


GridView比ListView更容易實現自適應的表格,但是GridView每個格單元的大小固定,而ListView實現的表格可以自訂每個格單元的大小,但因此實現自適應表格也會複雜些(格單元大小不一)。另外,GridView實現的表格可以定位在具體某個格單元,而ListView實現的表格則只能定位在表格行。因此還是那句老話:根據具體的使用環境而選擇GridView 或者 ListView實現表格。

先貼出本文程式啟動並執行:

 
 


本文實現的ListView表格,可以每個格單元大小不一,文本(TextView)或圖片(ImageView)做格單元的資料,不需要預先定義XML實現樣式(自適應的根本目標)。由於ListView置於HorizontalScrollView中,因此對於列比較多/列資料比較長的資料表也能很好地適應其寬度。

main.xml源碼如下:

view plaincopy to clipboardprint?
<?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> 


主類testMyListView.java的源碼如下:

view plaincopy to clipboardprint?
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,  
                                        &nb

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.