首页  >  文章  >  Java  >  如何创建每行都有静态标题和动态文本的 ListView?

如何创建每行都有静态标题和动态文本的 ListView?

Patricia Arquette
Patricia Arquette原创
2024-11-01 07:16:30499浏览

How to Create a ListView with a Static Header and Dynamic Text in Each Row?

使用静态标题和动态文本自定义 ListView 行布局

此问题涉及自定义 ListView 行布局以包含静态标题和动态文本改变文本。查询者创建了一个 ListView,其中使用 ArrayAdapter 从 String 数组填充数据,但在显示所需的布局格式时遇到困难。

解决方案:

实现指定的布局,请按照以下步骤操作:

  1. 使用两个 TextView 创建自定义行布局 (row.xml):一个用于静态标题,另一个用于动态文本。
  2. 定义主要活动 XML 布局的相对布局以包含 ListView。
  3. 实现一个自定义适配器,用于扩充行布局并相应地设置数据。

适配器类包括 getCount 等方法()、getItem()、getItemId() 和 getView(),它们处理数据处理和视图创建。

  1. 在 Activity 的 onCreate() 方法中,将适配器设置为 ListView。

这是一个示例实现:

row.xml:

<code class="xml"><?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="vertical" >

    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Header" />

    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/text" />
</LinearLayout></code>

main.xml:

<code class="xml"><?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

    <ListView
        android:id="@+id/listview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
    </ListView>

</LinearLayout></code>

自定义适配器:

<code class="java">class yourAdapter extends BaseAdapter {

    ...

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View vi = convertView;
        if (vi == null)
            vi = inflater.inflate(R.layout.row, null);
        TextView text = (TextView) vi.findViewById(R.id.text);
        text.setText(data[position]);
        return vi;
    }
}</code>

以上是如何创建每行都有静态标题和动态文本的 ListView?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn