0

我需要一种有条理的方式来组织我的应用程序,我认为按钮开始看起来很草率。下面是我的代码。我将 XML 设置为列表视图。不确定它是否正确。

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/species" 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" >
    <ListView 
        android:id="@+id/species" 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" > 
    </ListView>

</LinearLayout>

这是我的java代码。我还没有改变它,除了以前尝试这样做的导入。

package com.apw.listview.test;

import android.app.*;
import android.os.*;
import android.view.*;
import android.widget.*;
import android.content.*;

public class Species extends Activity
{


    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.species);

    }



    }
4

3 回答 3

11

Android 中有两种类型的列表视图: 1.基本列表视图。2.自定义列表视图。

基本列表视图 这些是不需要任何额外布局来生成列表视图的列表视图。您可以使用链接实现它: http ://windrealm.org/tutorials/android/android-listview.php

自定义列表视图 这种类型的列表视图需要额外的布局和自定义列表适配器来设置实现。您可以使用链接实现它: https ://abhiandroid.com/ui/listview

于 2012-09-25T04:32:56.510 回答
3

您需要获取对 ListView 的引用,然后使用适配器将其绑定到数据。在方法的末尾添加onCreate()

String[] array = new String[] {"cat", "dog", "mouse"};
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, array);

listView = (ListView) findViewById(R.id.species);
listView.setAdapter(adapter);

考虑完成 Android开发者网站上的一些教程来引导您完成此操作。

于 2012-09-24T23:42:59.490 回答
1

好吧,您本可以在列表视图中提供有关您想要的更多信息...无论如何,您可以点击此链接http://www.mkyong.com/android/android-listview-example/ 它会为您提供有关列表视图的几个示例.

为了简单起见,您需要一个列表、一个数组或一个数据库,以及您想要的数据结构。

您需要在数据和列表(ArrayAdapter、CursorAdapter 或您自己的基于 Base Adapter 的适配器)之间使用一个接口,您将向其提供数据

然后,每当您修改数据集时,您都会通过

myadapter.notifyDataSetChanged();
于 2012-09-24T23:48:17.943 回答