Android - ListView

来源:互联网 发布:淘宝飞利浦剃须刀真假 编辑:程序博客网 时间:2024/05/04 13:22

1. First of all, you got some data to display. In android, you would better store your data in XML files.

here is our /res/values/strings.xml

 

2. Seconly, you should define what each element is going to look like, also in a XML file.

here is /res/layout/single_item_layout.xml

 

3. Finaly, you begin to type your logical code in a Java file.

here is src/org/vhow/android/listview/MyListView.java

 

原创粉丝点击