Android에서 ListView 행 항목 사용자 정의
현재 작업에는 헤더를 표시하고 텍스트를 변경하는 행이 있는 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> <textview android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/text"></textview> </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>
사용자 정의 어댑터 클래스:
- BaseAdapter를 확장하는 사용자 정의 어댑터 클래스 만들기:
<code class="java">class yourAdapter extends BaseAdapter { Context context; String[] data; private static LayoutInflater inflater = null; public yourAdapter(Context context, String[] data) { this.context = context; this.data = data; inflater = (LayoutInflater) context .getSystemService(Context.LAYOUT_INFLATER_SERVICE); } // ... Implement other methods as required by BaseAdapter // such as getView(), getCount(), getItem(), getItemId() }</code>
Java 활동:
- Java 활동에서 ListView 및 어댑터를 설정합니다.
<code class="java">public class StackActivity extends Activity { ListView listview; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); listview = (ListView) findViewById(R.id.listview); listview.setAdapter(new yourAdapter(this, new String[] { "data1", "data2" })); } }</code>
이 접근 방식을 사용하면 사용자 정의 행 항목이 표시되는 ListView가 생성됩니다. 주기적으로 업데이트되는 동적 텍스트 위의 "헤더" 텍스트
위 내용은 Android에서 사용자 정의 행 항목과 동적으로 변경되는 텍스트를 사용하여 ListView를 만드는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

MinGW - Windows용 미니멀리스트 GNU
이 프로젝트는 osdn.net/projects/mingw로 마이그레이션되는 중입니다. 계속해서 그곳에서 우리를 팔로우할 수 있습니다. MinGW: GCC(GNU Compiler Collection)의 기본 Windows 포트로, 기본 Windows 애플리케이션을 구축하기 위한 무료 배포 가능 가져오기 라이브러리 및 헤더 파일로 C99 기능을 지원하는 MSVC 런타임에 대한 확장이 포함되어 있습니다. 모든 MinGW 소프트웨어는 64비트 Windows 플랫폼에서 실행될 수 있습니다.

드림위버 CS6
시각적 웹 개발 도구

WebStorm Mac 버전
유용한 JavaScript 개발 도구

ZendStudio 13.5.1 맥
강력한 PHP 통합 개발 환경

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기
