Android ListView용 사용자 정의 행 항목 생성: 세부 가이드
이 문서에서는 사용자 정의 행 항목을 생성하는 방법을 살펴보겠습니다. Android 애플리케이션의 ListView용.
도전
다음 레이아웃의 행이 필요한 ListView가 있습니다.
HEADER Text
"HEADER" 텍스트는 정적으로 유지되지만 "Text" 내용은 동적으로 변경됩니다.
초기 접근 방식
처음에는 문자열 배열을 채워서 배열에 전달하려고 했습니다. ArrayAdapter를 사용하여 데이터가 변경될 때마다 설정:
data_array = populateString(); adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, android.R.id.text1, data_array); listView.setAdapter(adapter);
그러나 이 접근 방식은 기존 레이아웃에서는 지정된 형식으로 데이터를 표시할 수 없었기 때문에 원하는 결과를 제공하지 못했습니다.
사용자 정의 행 레이아웃
이 제한을 극복하기 위해 행 항목에 대한 사용자 정의 레이아웃을 생성합니다:
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>
기본 XML 레이아웃
다음으로 ListView를 포함하도록 기본 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 { // ... (the adapter code) ... @Override public View getView(int position, View convertView, ViewGroup parent) { // ... (customizing view) ... TextView text = (TextView) vi.findViewById(R.id.text); text.setText(data[position]); return vi; } }</code>
Java 활동
마지막으로 Java 활동에서:
<code class="java">public class StackActivity extends Activity { // ... (the activity code) ... @Override public void onCreate(Bundle savedInstanceState) { // ... (setting up listview) ... listview.setAdapter(new yourAdapter(this, new String[] { "data1", "data2" })); } }</code>
다음 단계에 따라 ListView에 대한 사용자 정의 행 항목을 생성하여 데이터 표시에 더 많은 유연성과 사용자 정의를 허용할 수 있습니다.
위 내용은 Android ListView에서 행 항목을 사용자 정의하는 방법: 단계별 가이드?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!