Android ListView 목록 보기 사용 방법

머리말
데이터베이스 나 파일 에서 상당 한 데 이 터 를 얻 으 려 면 인터페이스 에서 사용자 에 게 보 여 주 려 고 할 때 하나의 보 기 를 정의 하 는 것 이 귀 찮 기 때문에 Android 에 서 는 배열 과 유사 한 컨트롤 인 CListView 를 제공 합 니 다.
사용 방법:
우리 가 돌 릴 데이터 가 Person 대상 배열 이 라 고 가정 합 니 다.

package cn.zhuangzhihuang.mylist;

public class Person {
 private String name;
 private String tel;
 
 
 public Person(String name, String tel) {
 super();
 this.name = name;
 this.tel = tel;
 }
 
 
 public String getName() {
 return name;
 }
 
 public void setName(String name) {
 this.name = name;
 }
 
 public String getTel() {
 return tel;
 }
 
 public void setTel(String tel) {
 this.tel = tel;
 }
 
 public String toString() {
 return "       " + this.getName() +"
" + this.getTel(); } }

Person[] DB = {
     new Person("  ","18555555555"),
     new Person("  ","18555555556"),
     new Person("  ","18555555557"),
     new Person("  ","18555555558"),
     new Person("  ","18555555559")   
     
    };
    
List<Person> friend_List;    
friend_List = new ArrayList<Person>();
for(int i=0;i<DB.length;i++) {
 friend_List.add(DB[i]);
}
1.우선 xml 에 listview 컨트롤 을 추가 해 야 합 니 다.

<ListView
  android:id="@+id/data_view"
  android:layout_width="match_parent"
  android:layout_height="wrap_content" >
</ListView>
2.다음 에 어댑터 MyAdapter 류 를 만들어 야 합 니 다.이 어댑터 의 역할 을 할 때 보 여 줄 데 이 터 를 보 이 는 형식 으로 바 꾸 면 바로 View 입 니 다.

class MyAdapter extends BaseAdapter {

 @Override
 public int getCount() { //      
  // TODO Auto-generated method stub
  return friend_List.size();
 }

 @Override
 public Object getItem(int position) { //    index     
  // TODO Auto-generated method stub
  return friend_List.get(position); 
 }

 @Override
 public long getItemId(int position) {
  // TODO Auto-generated method stub
  return position;
 }

 @Override
 public View getView(int position, View convertView, ViewGroup parent) { //                
  // TODO Auto-generated method stub
  View view = View.inflate(MainActivity.this, R.layout.item, null);
  TextView tv_item_name = (TextView) view.findViewById(R.id.tv_item_name);
  TextView tv_item_tel = (TextView) view.findViewById(R.id.tv_item_tel);
  tv_item_name.setText(friend_List.get(position).getName());
  tv_item_tel.setText(friend_List.get(position).getTel());
  return view;
  //     listview        ,                   view   listview 
 }
   
  }
3.그리고 xml 에 전환 할 view 템 플 릿 을 적어 야 합 니 다.

<?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="horizontal" >
  
  <TextView
    android:id="@+id/tv_item_name"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:gravity="center"
    android:textSize="20sp"
    />
  
  <TextView
    android:id="@+id/tv_item_tel"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:gravity="center"
    android:textSize="20sp"
    />

</LinearLayout>
4.마지막 으로 MainActivity 에서 listview 의 어댑터 를 설정 합 니 다.setAdapter 이 방법 을 호출 합 니 다.

data_view.setAdapter(myAdapter);
Android 코드:
xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:orientation="vertical" >
  
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    >
  
   <TextView
     android:id="@+id/tv1"
     android:layout_width="0dp"
     android:layout_height="wrap_content"
     android:layout_weight="1"
     android:gravity="center"
     android:text="  "
     android:textSize="20sp"
     />
   
   <TextView
     android:id="@+id/tv2"
     android:layout_width="0dp"
     android:layout_height="wrap_content"
     android:layout_weight="1"
     android:gravity="center"
     android:text="    "
     android:textSize="20sp"
     />
   
   </LinearLayout>
   
   <ListView
     android:id="@+id/data_view"
     android:layout_width="match_parent"
     android:layout_height="wrap_content" >
   </ListView>


</LinearLayout>
MainActivity:

package cn.zhuangzhihuang.mylist;

import java.util.ArrayList;
import java.util.List;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.BaseAdapter;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity {

 List<Person> friend_List;
 
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    
    ListView data_view = (ListView) findViewById(R.id.data_view);
    
    Person[] DB = {
     new Person("  ","18555555555"),
     new Person("  ","18555555556"),
     new Person("  ","18555555557"),
     new Person("  ","18555555558"),
     new Person("  ","18555555559")   
     
    };
    
    friend_List = new ArrayList<Person>();
    for(int i=0;i<DB.length;i++) {
     friend_List.add(DB[i]);
    }
    
    //      
    MyAdapter myAdapter = new MyAdapter();
    data_view.setAdapter(myAdapter);
    
    data_view.setOnItemClickListener(new OnItemClickListener() {

  @Override
  public void onItemClick(AdapterView<?> parent, View view,
   int position, long id) {
  // TODO Auto-generated method stub
  String temp = friend_List.get((int)id).toString();
  
  Toast.makeText(MainActivity.this, temp, 0).show();
  
  }
 });
  }
  
  class MyAdapter extends BaseAdapter {

 @Override
 public int getCount() { //      
  // TODO Auto-generated method stub
  return friend_List.size();
 }

 @Override
 public Object getItem(int position) { //    index     
  // TODO Auto-generated method stub
  return friend_List.get(position); 
 }

 @Override
 public long getItemId(int position) {
  // TODO Auto-generated method stub
  return position;
 }

 @Override
 public View getView(int position, View convertView, ViewGroup parent) { //                
  // TODO Auto-generated method stub
  View view = View.inflate(MainActivity.this, R.layout.item, null);
  TextView tv_item_name = (TextView) view.findViewById(R.id.tv_item_name);
  TextView tv_item_tel = (TextView) view.findViewById(R.id.tv_item_tel);
  tv_item_name.setText(friend_List.get(position).getName());
  tv_item_tel.setText(friend_List.get(position).getTel());
  return view;
  //     listview        ,                   view   listview 
 }
   
  }
}
효과:

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기