AdapterView 와 그 하위 클래스 의 4: ListView 및 SimpleAdapter 기반 목록

2944 단어 SimpleAdapter
코드 는 Simple Adapter Demo. zip 를 보십시오.
절 차 는 다음 과 같다.
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>

AdapterView及其子类之四:基于ListView及SimpleAdapter实现列表
1. Simple Adapter 를 사용 하면 Array Adapter 에 비해 복잡 한 표 항목 구 조 를 지원 할 수 있 습 니 다. 단일 한 textview 만 지원 하 는 것 이 아 닙 니 다.
2. 그 생 성 과정의 두 가지 주요 차이 점 은:
(1) 목록 항목 마다 레이아웃 파일 이 다 릅 니 다.
(2) SimpleAdapter 를 만 드 는 작업 이 더욱 복잡 합 니 다. List < map < String, Object > 를 구축 해 야 합 니 다.

좋은 웹페이지 즐겨찾기