android之ListView和adapter配合显示图片和文字列表
listView頁面布局:layout/activity_main.xml:
<LinearLayout 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:orientation="horizontal" >
? ? <ListView
? ? ? ? android:id="@+id/lvGenerals"
? ? ? ? android:layout_width="match_parent"
? ? ? ? android:layout_height="match_parent"
? ? ? ? android:divider="#ccc"//這是灰色
? ? ? ? android:dividerHeight="5dp" >
? ? </ListView>
??
</LinearLayout>
listView的java代碼:
package com.example.day05_01;
import java.util.ArrayList;
import java.util.List;
import com.litsoft.entity.General;
import android.support.v7.app.ActionBarActivity;
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.AdapterView.OnItemLongClickListener;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends Activity {
private List<General> generals;//要顯示的數據集合
private ListView lvGenerals;//ListView對象
private BaseAdapter generalAdapt;//適配器
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
init();//初始化要顯示的數據集合、ListView對象、以及適配器
setListener();//設置按item事件
}
private void setListener() {
// TODO Auto-generated method stub
//短按事件監聽
lvGenerals.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
// TODO Auto-generated method stub
Toast.makeText(MainActivity.this, generals.get(position).getName()+":被短按 ", 50000).show();
}
});
//長按事件監聽
lvGenerals.setOnItemLongClickListener(new OnItemLongClickListener() {
@Override
public boolean onItemLongClick(AdapterView<?> parent, View view,
int position, long id) {
// TODO Auto-generated method stub
Toast.makeText(MainActivity.this, generals.get(position).getName()+":被長按 ", 50000).show();
return true;//1、如果返回false,長按后,他也會觸發短按事件2、如果返回true的話,長按后就不會觸發短按事件
}
});
}
private void init() {
// TODO Auto-generated method stub
//初始化要顯示的數據集合---start
generals = new ArrayList<General>();
//圖片資源集合
int[] resImags = {
R.drawable.baiqi,R.drawable.caocao,R.drawable.chengjisihan,
R.drawable.hanxin,R.drawable.lishimin,R.drawable.nuerhachi,
R.drawable.sunbin,R.drawable.sunwu,R.drawable.yuefei,
R.drawable.zhuyuanzhang
};
//將資源中的字符串組數轉換為Java數組
String [] names = getResources().getStringArray(R.array.generals);
for (int i =0;i<resImags.length;i++){
General general = new General(resImags[i],names[i]);
generals.add(general);
}
//初始化要顯示的數據集合---end
//初始化listView
lvGenerals = (ListView) findViewById(R.id.lvGenerals);
//初始化適配器以及設置該listView的適配器
generalAdapt = new GeneralAdapter();
lvGenerals.setAdapter(generalAdapt);
}
class GeneralAdapter extends BaseAdapter {
//得到listView中item的總數
@Override
public int getCount() {
// TODO Auto-generated method stub
return generals.size();
}
@Override
public General getItem(int position) {
// TODO Auto-generated method stub
return generals.get(position);
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return position;
}
//簡單來說就是拿到單行的一個布局,然后根據不同的數值,填充主要的listView的每一個item
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
//拿到ListViewItem的布局,轉換為View類型的對象
View layout = View.inflate(MainActivity.this, R.layout.activity_item_generals_, null);
//找到顯示軍事家頭像的ImageView
ImageView ivThumb = (ImageView) layout.findViewById(R.id.ivThumb);
//找到顯示軍事家名字的TextView
TextView tvName = (TextView) layout.findViewById(R.id.tvName);
//獲取軍事中下標是position的軍事家對象
General general = ?generals.get(position);
//顯示軍事家頭像
ivThumb.setImageResource(general.getImageSrc());
//顯示軍事家的姓名
tvName.setText(general.getName());
return layout;
}
}
}
用于適配的頁面布局:layout/activity_item_generals_.xml
<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="com.example.day05_01.ItemGenerals_Activity" >
? ? <ImageView?
? ? ? ? ?android:id="@+id/ivThumb"
? ? ? ? android:layout_width="80dp"
? ? ? ? android:layout_height="80dp"
? ? ? ? android:src="@drawable/baiqi"/>
? ? <TextView
? ? ? ? android:id="@+id/tvName"
? ? ? ? android:layout_toRightOf="@id/ivThumb"?
? ? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="80dp"
? ? ? ? android:text="白起"
? ? ? ? android:layout_marginLeft="25dp"
? ? ? ? android:textSize="20sp"
? ? ? ? android:gravity="center_vertical"
? ? ? ? />
</RelativeLayout>
清單列表:AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
? ? package="com.example.day05_01"
? ? android:versionCode="1"
? ? android:versionName="1.0" >
? ? <uses-sdk
? ? ? ? android:minSdkVersion="8"
? ? ? ? android:targetSdkVersion="21" />
? ? <application
? ? ? ? android:allowBackup="true"
? ? ? ? android:icon="@drawable/ic_launcher"
? ? ? ? android:label="@string/app_name"
? ? ? ? android:theme="@style/AppTheme" >
? ? ? ? <activity
? ? ? ? ? ? android:name=".MainActivity"
? ? ? ? ? ? android:label="@string/app_name" >
? ? ? ? ? ? <intent-filter>
? ? ? ? ? ? ? ? <action android:name="android.intent.action.MAIN" />
? ? ? ? ? ? ? ? <category android:name="android.intent.category.LAUNCHER" />
? ? ? ? ? ? </intent-filter>
? ? ? ? </activity>
? ? ? ? <activity
? ? ? ? ? ? android:name=".ItemGenerals_Activity"
? ? ? ? ? ? android:label="@string/title_activity_item_generals_" >
? ? ? ? </activity>
? ? </application>
</manifest>
各個將軍名字:values/strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
? ? <string name="app_name">Day05_01</string>
? ? <string name="hello_world">Hello world!</string>
? ? <string name="action_settings">Settings</string>
? ? <string name="title_activity_item_generals_">ItemGenerals_Activity</string>
<string-array name="generals">
? ?<item>白起</item>
? ?<item>曹操</item>
? ?<item>成吉思汗</item>
? ?<item>韓信</item>
? ?<item>李世民</item>
? ?<item>努爾哈赤</item>
? ?<item>孫臏</item>
? ?<item>孫武</item>
? ?<item>朱元璋</item>
? ?<item>岳飛</item>
</string-array>
</resources>
效果:
總結
以上是生活随笔為你收集整理的android之ListView和adapter配合显示图片和文字列表的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android 的listview 3大
- 下一篇: Android之自定义Adapter的L