사용자 정의 어댑터
하나의 인 터 페 이 스 를 클 라 이언 트 가 기대 하 는 인터페이스 로 바 꾸 어 인터페이스 가 일치 하지 않 아 함께 일 할 수 없 었 던 두 가지 유형 이 함께 일 할 수 있 도록 한다.
BaseAdapter
Adapter 인터페이스의 실현 클래스
네 가지 추상 적 인 방법 을 포함한다.
int getCount()
View getView(int position,....)
Object getItem(int position)
Long getItemId(int position)
사용자 정의 어댑터 사례
실현 절차
정의 레이아웃 파일
데이터 세트 준비
사용자 정의 어댑터 만 들 기
ListView 초기 화
작은 사례:
레이아웃:
item. xml 레이아웃:
<ListView 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:id="@+id/lvStudent"
/>
어댑터:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<ImageView
android:layout_width="64dp"
android:layout_height="64dp"
android:src="@drawable/image"/>
<TableLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1.0"
android:stretchColumns="*">
<TableRow
android:layout_height="0dp"
android:layout_weight="1.0">
<TextView
android:id="@+id/tvId"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:textSize="20sp"/>
<TextView
android:id="@+id/tvName"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:textSize="20sp"
/>
</TableRow>
<TableRow
android:layout_height="0dp"
android:layout_weight="1.0">
<TextView
android:id="@+id/tvSex"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:textSize="20sp"/>
<TextView
android:id="@+id/tvAge"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:textSize="20sp"/>
</TableRow>
</TableLayout>
</LinearLayout>
학생 클래스:
package com.example.listview;
import java.util.ArrayList;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.webkit.WebView.FindListener;
import android.widget.BaseAdapter;
import android.widget.TextView;
public class StudentAdapter extends BaseAdapter {
private ArrayList<Student> stus;
private LayoutInflater inflater;
public StudentAdapter(Context context,ArrayList<Student> stus){
if(stus != null)
this.stus = stus;
else
this.stus = new ArrayList<Student>();
this.inflater = LayoutInflater.from(context);
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return stus.size();
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return null;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
View v = inflater.inflate(R.layout.item, null);
TextView tvId = (TextView)v.findViewById(R.id.tvId);
TextView tvName = (TextView)v.findViewById(R.id.tvName);
TextView tvSex = (TextView)v.findViewById(R.id.tvSex);
TextView tvAge = (TextView)v.findViewById(R.id.tvAge);
Student stu = stus.get(position);
tvId.setText(""+stu.getId());
tvName.setText(stu.getName());
tvSex.setText(stu.getSex());
tvAge.setText("" + stu.getAge());
return v;
}
}
모든 정 보 를 되 돌려 줍 니 다:
package com.example.listview;
public class Student {
private int id;
private String name;
private String sex;
private int age;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public Student(int id,String name,String sex,int age){
super();
this.id=id;
this.name=name;
this.sex=sex;
this.age=age;
}
public Student(){
super();
}
}
주 활동:
package com.example.listview;
import java.util.ArrayList;
public class StudentBiz {
public static ArrayList<Student> getStudents(){
ArrayList<Student> stus = new ArrayList<>();
for(int i=1; i <=10; i++){
Student stu = new Student(i, " "+ i," ",23);
stus.add(stu);
}
return stus;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.