>  기사  >  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 행 레이아웃을 사용자 정의하는 것과 관련이 있습니다. 텍스트 변경. 질문자는 ArrayAdapter를 사용하여 문자열 배열에서 채워진 데이터로 ListView를 생성했지만 원하는 레이아웃 형식을 표시하는 데 어려움을 겪었습니다.

해결책:

지정된 레이아웃을 사용하려면 다음 단계를 따르세요.

  1. 두 개의 사용자 정의 행 레이아웃(row.xml)을 만듭니다. TextViews: 하나는 정적 헤더용이고 다른 하나는 동적 텍스트용입니다.
  2. ListView를 포함하도록 기본 활동 XML 레이아웃에 대한 RelativeLayout을 정의합니다.
  3. 행 레이아웃을 확장하고 그에 따라 데이터를 설정합니다.

어댑터 클래스에는 getCount(), getItem(), 데이터 처리 및 보기 생성을 처리하는 getItemId() 및 getView().

  1. 활동의 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으로 문의하세요.