手记

Android零基础入门第39节:ListActivity和自定义列表项

相信通过前两期的学习,以及会开发最简单的一些列表界面了吧,那么本期接着来学习更多方法技巧。

                                              

一、使用ListActivity

    如果程序的窗口仅仅需要显示一个列表,则可以直接让Activity继承ListActivity来实现, ListActivity的子类无须调用setContentView()方法来显示某个界面,而是可以直接传入一个内容Adapter,ListActivity的子类就呈现出一个列表。

    接下来通过一个简单的示例程序来学习基于ListActivity实现列表。

    继续使用WidgetSample工程的listviewsample模块,在java包下创建MyListActivity.java文件,具体代码如下:

[代码]java代码:

?

01

02

03

04

05

06

07

08

09

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

package com.jinyu.cqkxzsxy.android.listviewsample;

 

import android.app.ListActivity;

import android.os.Bundle;

import android.widget.ArrayAdapter;

 

public class MyListActivity   extends ListActivity   {

 

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

 

        //   定义一个数组

        String[]   persons = {"蜡笔小新", "皮卡丘", "蜘蛛侠", "灰太狼", "黑猫警长",

                "孙悟空", "忍者神龟", "米老鼠", "HelloKitty",   "樱桃小丸子"};

 

        //   将数组包装成ArrayAdapter

        ArrayAdapter<string>   adapter = new ArrayAdapter<string>(this,

                android.R.layout.simple_list_item_single_choice,   persons);

 

        //   设置该窗口显示列表

        setListAdapter(adapter);

    }

}</string></string>

    ListActivity的布局文件中只有一个ListView,只需要为ListActivity设置Adapter即可。

    从上图可以看到,ListActivity的默认布局是由一个位于屏幕中心的列表组成的。

二、自定义列表项

    前面学习ListView都是使用的Android系统自定义列表项资源,基本都是一些纯文本的资源,界面不够炫目,也没有办法定制。在实际开发中,列表经常包括图标、按钮等组件,这就需要开发者自定义列表项来完成了。关键是需要给适配器Adapter提供足够的数据,让Adapter能够用更丰富的View对象来填充列表的每一行。

    接下来就通过一个示例来学习如何自定义列表项。

    同样使用WidgetSample工程的listviewsample模块,在app/main/res/layout/目录下创建custom_item_layout.xml文件,在其中填充如下代码片段:

[代码]xml代码:

?

01

02

03

04

05

06

07

08

09

10

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

              android:orientation="vertical"

              android:layout_width="match_parent"

              android:layout_height="match_parent">

    <ListView

        android:id="@+id/listview"

        android:layout_width="match_parent"

        android:layout_height="wrap_content" />

</LinearLayout>

    在res/layout/目录下新建一个custom_item.xml的列表项布局文件,其代码如下:

[代码]xml代码:

?

01

02

03

04

05

06

07

08

09

10

11

12

13

14

15

16

17

18

19

20

21

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

              android:layout_width="match_parent"

              android:layout_height="match_parent"

              android:orientation="horizontal"

              android:gravity="center_vertical">

 

    <ImageView

        android:id="@+id/icon_img"

        android:layout_width="50dp"

        android:layout_height="50dp"

        android:padding="5dp"

        android:src="@mipmap/ic_launcher"/>

 

    <TextView

        android:id="@+id/content_tv"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:textSize="24sp"

        android:textColor="#00f"/>

</LinearLayout>

    这个布局使用LinearLayout作为一行,其中图标位于左侧,文本位于右侧。

    接下来为ListView提供Adapter,Adapter决定了ListView所要显示的列表项。在java包下创建CustomItemActivity.java文件,加载上面新建的布局文件,具体代码如下:

[代码]java代码:

?

01

02

03

04

05

06

07

08

09

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

package com.jinyu.cqkxzsxy.android.listviewsample;

 

import android.os.Bundle;

import android.support.v7.app.AppCompatActivity;

import android.view.View;

import android.widget.AdapterView;

import android.widget.ArrayAdapter;

import android.widget.ListView;

import android.widget.Toast;

 

import java.util.ArrayList;

import java.util.List;

 

public class CustomItemActivity   extends AppCompatActivity   {

 

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.custom_item_layout);

 

        //   获取界面ListView组件

        ListView   listView = (ListView) findViewById(R.id.listview);

 

        //   定义一个List集合

        final List<string> components = new ArrayList<>();

        components.add("TextView");

        components.add("EditText");

        components.add("Button");

        components.add("CheckBox");

        components.add("RadioButton");

        components.add("ToggleButton");

        components.add("ImageView");

 

        //   将List包装成ArrayAdapter

        ArrayAdapter<string>   adapter = new ArrayAdapter<string>(this,

                R.layout.custom_item,   R.id.content_tv, components);

 

        //   为ListView设置Adapter

        listView.setAdapter(adapter);

 

        //   为ListView列表项绑定点击事件监听器

        listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {

            @Override

            public void onItemClick(AdapterView<!--?--> adapterView, View view, int position, long id) {

                Toast.makeText(CustomItemActivity.this,   components.get(position),

                        Toast.LENGTH_SHORT).show();

            }

        });

    }

}

</string></string></string>

    以上代码遵循前面学习的ListView示例的整体结构。其主要的区别就是使用了自定义列表布局R.layout.list_item。创建ArrayAdapter必须指定如下四个参数。

·         context:要使用的上下文环境,几乎创建所有组件都需要传入Context对象。

·         resource: 要使用的自定义列表项布局资源 ID。

·         textViewResourceId:自定义列表布局中TextView的ID,该TextView组件将作为ArrayAdapter的列表项组件。

·         objects:要实际显示的数组或List,将负责为多个列表项提供数据。 该数组或List包含多少个元素,就将生成多少个列表项。

    从上图可以看到,列表布局里面使用了我们自定义的图标,也修改了文本显示样式。

    但是在这个示例中,所有的图标都是相同的,往往不能满足实际开发需求,会在下一节中来进行学习。

    今天就先到这里,如果有问题欢迎留言一起探讨,也欢迎加入Android零基础入门技术讨论微信群,共同成长!

原文链接:http://www.apkbus.com/blog-205190-68703.html

0人推荐
随时随地看视频
慕课网APP