0

可能重复:
用于列表视图自定义布局的适配器

ArrayAdapter<String> adapter = null;
JSONArray productsList = null;
try {
    productsList = obj5.getJSONArray("Content");
} catch (JSONException e2) {
    e2.printStackTrace();
}

if(productsList != null){
    ListView lv = (ListView) findViewById(android.R.id.list);

    for (int i=0; i<productsList.length(); i++) {

    final String[] items = new String[productsList.length()]; 

    String product = null;

    try {       
        product = productsList.getJSONObject(i).getString("Quantity")+" X "+
            productsList.getJSONObject(i).getString("Name") +"         "+
            Currency.britishPound+productsList.getJSONObject(i).getString("MinCost");
    } catch (JSONException e) {
        e.printStackTrace();
    }

    if(product!=null){                  
        items[i]=product;                       
    }

    adapter = new ArrayAdapter<String>(APIQuickCheckout.this, R.layout.product_item, R.id.label, items);

    lv.setAdapter(adapter);
}

这是我的列表视图:

<ListView
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_margin="5dip"
    android:layout_weight="30">
</ListView>

这就是我如何分别通过每个产品。

<?xml version="1.0" encoding="utf-8"?>
<!--  Single List Item Design -->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/label"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="10dip"
    android:textSize="16sp"
    android:textStyle="bold" >
 </TextView>

现在,根据上述代码,我将传递给每一行的只是一个简单的字符串。但是,我想知道如何传递三个不同的字符串。我想传递三个不同的字符串的原因是我希望它们采用以下格式:

Quantity X 
Number                          Price(this should be at the end of the line)
4

1 回答 1

0

您必须从适配器派生,并提供正确填充的视图。像这儿:

https://github.com/ko5tik/camerawatch/blob/master/src/de/pribluda/android/camerawatch/CameraAdapter.java

为了获得更好的性能,请考虑:

  • 重用提供给 getView() 方法的视图#
  • 利用 viewHolder 模式保存 getViewById() 分辨率
于 2012-12-20T10:04:31.340 回答