首页

android 下拉刷新效果 例子源码下载

java

2020-8-10

package com.imooc.listviewfrashdemo1;

import java.util.ArrayList;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;

import com.example.listviewfrashdemo1.R;
import com.imooc.listviewfrashdemo1.ReFlashListView.IReflashListener;

public class MainActivity extends Activity implements IReflashListener{
	ArrayList<ApkEntity> apk_list;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		setData();
		showList(apk_list);
	}

	MyAdapter adapter;
	ReFlashListView listview;
	private void showList(ArrayList<ApkEntity> apk_list) {
		if (adapter == null) {
			listview = (ReFlashListView) findViewById(R.id.listview);
			listview.setInterface(this);
			adapter = new MyAdapter(this, apk_list);
			listview.setAdapter(adapter);
		} else {
			adapter.onDateChange(apk_list);
		}
	}

	private void setData() {
		apk_list = new ArrayList<ApkEntity>();
		for (int i = 0; i < 10; i  ) {
			ApkEntity entity = new ApkEntity();
			entity.setName("默认数据");
			entity.setDes("这是一个神奇的应用");
			entity.setInfo("50w用户");
			apk_list.add(entity);
		}
	}

	private void setReflashData() {
		for (int i = 0; i < 2; i  ) {
			ApkEntity entity = new ApkEntity();
			entity.setName("刷新数据");
			entity.setDes("这是一个神奇的应用");
			entity.setInfo("50w用户");
			apk_list.add(0,entity);
		}
	}
	@Override
	public void onReflash() {
		// TODO Auto-generated method stub\
		Handler handler = new Handler();
		handler.postDelayed(new Runnable() {
			
			@Override
			public void run() {
				// TODO Auto-generated method stub
				//获取最新数据
				setReflashData();
				//通知界面显示
				showList(apk_list);
				//通知listview 刷新数据完毕;
				listview.reflashComplete();
			}
		}, 2000);
		
	}
}

资源下载此资源下载价格为3D币(VIP免费),请先
资源文件列表
ListViewFrashDemo/.classpath , 475
ListViewFrashDemo/.project , 854
ListViewFrashDemo/.settings/org.eclipse.jdt.core.prefs , 177
ListViewFrashDemo/AndroidManifest.xml , 966
ListViewFrashDemo/bin/AndroidManifest.xml , 966
ListViewFrashDemo/bin/classes/com/example/listviewfrashdemo1/BuildConfig.class , 369
ListViewFrashDemo/bin/classes/com/example/listviewfrashdemo1/R$attr.class , 376
ListViewFrashDemo/bin/classes/com/example/listviewfrashdemo1/R$color.class , 839
ListViewFrashDemo/bin/classes/com/example/listviewfrashdemo1/R$dimen.class , 497
ListViewFrashDemo/bin/classes/com/example/listviewfrashdemo1/R$drawable.class , 1056
ListViewFrashDemo/bin/classes/com/example/listviewfrashdemo1/R$id.class , 798
ListViewFrashDemo/bin/classes/com/example/listviewfrashdemo1/R$layout.class , 511
ListViewFrashDemo/bin/classes/com/example/listviewfrashdemo1/R$menu.class , 424
ListViewFrashDemo/bin/classes/com/example/listviewfrashdemo1/R$string.class , 508
ListViewFrashDemo/bin/classes/com/example/listviewfrashdemo1/R$style.class , 508
ListViewFrashDemo/bin/classes/com/example/listviewfrashdemo1/R.class , 853
ListViewFrashDemo/bin/classes/com/imooc/listviewfrashdemo1/ApkEntity.class , 921
ListViewFrashDemo/bin/classes/com/imooc/listviewfrashdemo1/MainActivity$1.class , 1014
ListViewFrashDemo/bin/classes/com/imooc/listviewfrashdemo1/MainActivity.class , 3031
ListViewFrashDemo/bin/classes/com/imooc/listviewfrashdemo1/MyAdapter$ViewHolder.class , 622
ListViewFrashDemo/bin/classes/com/imooc/listviewfrashdemo1/MyAdapter.class , 2840
ListViewFrashDemo/bin/classes/com/imooc/listviewfrashdemo1/ReFlashListView$IReflashListener.class , 283
ListViewFrashDemo/bin/classes/com/imooc/listviewfrashdemo1/ReFlashListView.class , 6865
ListViewFrashDemo/bin/classes.dex , 699468
ListViewFrashDemo/bin/dexedLibs/android-support-v4-f9672d22e81769fffd82c57eb0b3b763.jar , 232610
ListViewFrashDemo/bin/jarlist.cache , 120
ListViewFrashDemo/bin/ListViewFrashDemo1.apk , 474341
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/app_item_bg.9.png , 373
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/ic_launcher.png , 5964
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/loading_0.png , 821
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/loading_1.png , 811
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/loading_2.png , 840
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/loading_3.png , 828
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/loading_4.png , 864
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/loading_5.png , 854
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/loading_6.png , 854
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/loading_7.png , 852
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/pull_to_refresh_arrow.png , 476
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/test_icon.png , 15708
ListViewFrashDemo/bin/res/crunch/drawable-hdpi/topimg.png , 159421
ListViewFrashDemo/bin/res/crunch/drawable-mdpi/ic_launcher.png , 3112
ListViewFrashDemo/bin/res/crunch/drawable-xhdpi/ic_launcher.png , 9355
ListViewFrashDemo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png , 17889
ListViewFrashDemo/bin/resources.ap_ , 231987
ListViewFrashDemo/gen/com/example/listviewfrashdemo1/BuildConfig.java , 172
ListViewFrashDemo/gen/com/example/listviewfrashdemo1/R.java , 5076
ListViewFrashDemo/ic_launcher-web.png , 51394
ListViewFrashDemo/libs/android-support-v4.jar , 621451
ListViewFrashDemo/proguard-project.txt , 781
ListViewFrashDemo/project.properties , 563
ListViewFrashDemo/res/drawable/custom_progress_bar.xml , 912
ListViewFrashDemo/res/drawable/dlbtn_selector.xml , 481
ListViewFrashDemo/res/drawable-hdpi/app_item_bg.9.png , 284
ListViewFrashDemo/res/drawable-hdpi/button_bg_green2_normal.9.png , 252
ListViewFrashDemo/res/drawable-hdpi/button_bg_green2_pressed.9.png , 253
ListViewFrashDemo/res/drawable-hdpi/h_line.9.png , 157
ListViewFrashDemo/res/drawable-hdpi/ic_launcher.png , 7658
ListViewFrashDemo/res/drawable-hdpi/loading_0.png , 1104
ListViewFrashDemo/res/drawable-hdpi/loading_1.png , 1099
ListViewFrashDemo/res/drawable-hdpi/loading_2.png , 1129
ListViewFrashDemo/res/drawable-hdpi/loading_3.png , 1118
ListViewFrashDemo/res/drawable-hdpi/loading_4.png , 1152
ListViewFrashDemo/res/drawable-hdpi/loading_5.png , 1149
ListViewFrashDemo/res/drawable-hdpi/loading_6.png , 1127
ListViewFrashDemo/res/drawable-hdpi/loading_7.png , 1168
ListViewFrashDemo/res/drawable-hdpi/pull_to_refresh_arrow.png , 463
ListViewFrashDemo/res/drawable-hdpi/test_icon.png , 15708
ListViewFrashDemo/res/drawable-hdpi/topimg.png , 227318
ListViewFrashDemo/res/drawable-mdpi/ic_launcher.png , 3777
ListViewFrashDemo/res/drawable-xhdpi/ic_launcher.png , 12516
ListViewFrashDemo/res/drawable-xxhdpi/ic_launcher.png , 24777
ListViewFrashDemo/res/layout/activity_main.xml , 611
ListViewFrashDemo/res/layout/header_layout.xml , 1879
ListViewFrashDemo/res/layout/item_layout.xml , 2355
ListViewFrashDemo/res/menu/main.xml , 263
ListViewFrashDemo/res/values/color.xml , 697
ListViewFrashDemo/res/values/dimens.xml , 220
ListViewFrashDemo/res/values/strings.xml , 235
ListViewFrashDemo/res/values/styles.xml , 1036
ListViewFrashDemo/res/values-sw600dp/dimens.xml , 203
ListViewFrashDemo/res/values-sw720dp-land/dimens.xml , 277
ListViewFrashDemo/res/values-v11/styles.xml , 334
ListViewFrashDemo/res/values-v14/styles.xml , 391
ListViewFrashDemo/src/com/imooc/listviewfrashdemo1/ApkEntity.java , 465
ListViewFrashDemo/src/com/imooc/listviewfrashdemo1/MainActivity.java , 1893
ListViewFrashDemo/src/com/imooc/listviewfrashdemo1/MyAdapter.java , 1976
ListViewFrashDemo/src/com/imooc/listviewfrashdemo1/ReFlashListView.java , 6964
没有账号? 忘记密码?

社交账号快速登录