如何将数据放入XML的ListView?

时间:2016-05-06 07:10:02

标签: java android xml listview

我刚刚开始学习Android,我正在尝试创建一个简单的视图,其中主要XML的一部分是listview。

这是我的main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <RelativeLayout
        android:layout_width="100dp"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:id="@+id/Menu">

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/menu_item_1"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="129dp" />

    </RelativeLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:layout_toEndOf="@+id/Menu"
        android:layout_toRightOf="@+id/Menu"
        android:layout_alignParentTop="true"
        android:id="@+id/Banner">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="Account Log"
            android:layout_gravity="center"
            android:inputType="none"
            android:textStyle="bold"/>
    </FrameLayout>

    <ListView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/Log"
        android:layout_toRightOf="@+id/Menu"
        android:layout_below="@+id/Banner"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"
        android:choiceMode="none"
        android:clickable="false"
        android:contextClickable="true"
        android:fadeScrollbars="true" />

</RelativeLayout>

假设我有一个名为getDatafromFile()的函数返回数据的ArrayList,我该如何将这些数据放入listView?

我听说过使用ArrayAdapter,但我见过的例子将ListView放到整个布局中。

2 个答案:

答案 0 :(得分:1)

创建列表视图的完整代码

public class MainActivity extends AppCompatActivity {

ArrayList<String>arrayList=new ArrayList<>();

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main); //here is the layout where your views exists

    for (int i=0;i<=20;i++){
        arrayList.add("List Items"+i);   //assume we passed the data in arraylist
    }
    ListView listView=(ListView)findViewById(R.id.log); //your listview

    ArrayAdapter arrayAdapter=new ArrayAdapter(this,android.R.layout.simple_list_item_1,arrayList);//the second argument is a layout file that have a textview

    listView.setAdapter(arrayAdapter);



}
}

答案 1 :(得分:1)

将数据放入ListView的最佳方法是创建一个ArrayAdapter类。我总是建议您尝试使用自定义适配器类,以便您可以根据您的要求进行更改。您可以创建一个扩展ArrayAdapter的类。然后将列表视图中所需的arraylist传递给该适配器构造函数。 例如,下面是自定义适配器类

public class CustomAdapter extends ArrayAdapter<DataInfo> {


ArrayList<DataInfo> itemList =new ArrayList<>();
Context context;
LayoutInflater inflater;
public CustomAdapte(Context context, ArrayList<VegInfo> list) {
    super(context, R.layout.list_item, list);
    this.context = context;
    itemList = list;
    inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {

    //getting an item from the list
    DataInfo item = itemList.get(position);
    if(convertView==null)
        convertView = inflater.inflate(R.layout.list_item,parent,false);

        //displaying some data from your data info in a textview
    TextView textView = (TextView) convertView.findViewById(R.id.tv);
    textView.setText(item.subitem);


    return convertView;
}
}

在您的活动中,您可以将数据设置为该适配器。

 CustomAdapter yourAdapter = new CustomAdapte(activity,yourArrayList);
 yourListView.setAdapter(yourAdapter);

现在,列表视图中包含数组列表中的数据。每当数组列表发生更改时,只需调用

即可在列表视图中反映出来
yourAdapter.notifydatasetchanged();

此处list_item是您应为单个列表项视图创建的自定义XML文件。

希望这会对你有所帮助。如果没有,请告诉我,让我说清楚。快乐的编码。