정적 헤더와 동적 텍스트를 사용하여 ListView 행 레이아웃 사용자 정의
이 질문은 정적 헤더를 포함하고 동적으로 ListView 행 레이아웃을 사용자 정의하는 것과 관련이 있습니다. 텍스트 변경. 질문자는 ArrayAdapter를 사용하여 문자열 배열에서 채워진 데이터로 ListView를 생성했지만 원하는 레이아웃 형식을 표시하는 데 어려움을 겪었습니다.
해결책:
지정된 레이아웃을 적용하려면 다음 단계를 따르세요.
어댑터 클래스에는 getCount와 같은 메소드가 포함됩니다. (), getItem(), getItemId() 및 getView()는 데이터 처리 및 뷰 생성을 처리합니다.
다음은 구현 예입니다.
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!