AdapterView 와 그 하위 클래스 의 4: ListView 및 SimpleAdapter 기반 목록
2944 단어 SimpleAdapter
절 차 는 다음 과 같다.
1. 홈 레이아웃 파일 만 들 기
각 목록 옵션 의 보 기 를 만 듭 니 다.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<ListView
android:id="@+id/listview"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:divider="#00ff00"
android:dividerHeight="2dp"
android:headerDividersEnabled="false"
/>
</RelativeLayout>
3. 주 클래스 만 들 기
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ll_listview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<ImageView
android:id="@+id/iv_header"
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight="1"
android:contentDescription="@string/header"/>
<LinearLayout
android:id="@+id/ll_title_content"
android:layout_width="0dp"
android:layout_height="40dp"
android:orientation="vertical"
android:layout_weight="4">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="20dp"
android:background="#000000" />
<TextView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="20dp"
android:background="#00ff00" />
</LinearLayout>
</LinearLayout>
1. Simple Adapter 를 사용 하면 Array Adapter 에 비해 복잡 한 표 항목 구 조 를 지원 할 수 있 습 니 다. 단일 한 textview 만 지원 하 는 것 이 아 닙 니 다.
2. 그 생 성 과정의 두 가지 주요 차이 점 은:
(1) 목록 항목 마다 레이아웃 파일 이 다 릅 니 다.
(2) SimpleAdapter 를 만 드 는 작업 이 더욱 복잡 합 니 다. List < map < String, Object > 를 구축 해 야 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ListView(2) - SimpleAdapter 소스 해석 및 ViewBinders 사용법제목과 같이, 여기는 주로 Simple Adapter의 원본 코드를 설명하는데, ViewBinders는 단지 이 종류의 지식점일 뿐이다. 안드로이드 원본이라고 하면 많은 사람들이 보면 머리가 점점 어지러워지고 결국은...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.