1

我有个问题。

我制作了一个具有不同名称、id、类型的数据库(数组)。我还制作了读取名称的字符串(名称是一个字符串:

public static String[] getAllPokemonsInStrings() {
    ArrayList<String> items = new ArrayList<String>();
    for(Pokemon p : Pokemon.values()){
        if(p.getName() != null){
            items.add(p.getName());
        }
    }
    return items.toArray(new String[]{});
}

这是创建它的位:

public class Test3 extends ListActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        this.setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item, R.id.label,      Types.getAllPokemonsInStrings() ));

    }
}

每行的xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"  
    android:orientation="vertical"
    android:id="@+id/LinearLayout">  

    <ImageView
        android:id="@+id/sprite"
        android:layout_width="96dp"
        android:layout_height="96dp"
        android:contentDescription="@string/sprite"
        android:src="@drawable/p002" />

    <LinearLayout
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"  
        android:orientation="vertical">

        <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="16dip"
            android:textStyle="bold" />

    </LinearLayout>
</LinearLayout>

有没有办法改变每行的图像资源(它是一个int),从数组中加载它?

4

1 回答 1

2

对的,这是可能的。不过,您需要创建自己的适配器类和 Override getView()。我建议您阅读本教程,了解如何创建自定义适配器。

于 2012-11-03T00:21:08.823 回答