真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

下拉刷新SwipeRefreshLayout源碼

API doc:http://developer.android.com/reference/android/support/v4/widget/SwipeRefreshLayout.html

成都創(chuàng)新互聯(lián)公司從2013年成立,先為烏達(dá)等服務(wù)建站,烏達(dá)等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為烏達(dá)企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

Google在support v4 19.1版本推出了一個(gè)下拉刷新組件SwipeRefreshLayout,使用起來方便,效果優(yōu)美,但要注意的是其布局中只能有一個(gè)直接子布局。使用步驟如下:

1.在xml中,加載android.support.v4.widget.SwipeRefreshLayout

 


    
    


2.使用

 

package com.example.testswiperefreshlayout;

import android.os.Bundle;
import android.os.Handler;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.support.v4.widget.SwipeRefreshLayout;
import android.support.v4.widget.SwipeRefreshLayout.OnRefreshListener;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ListView;
import android.widget.TextView;

public class MainActivity extends Activity implements OnRefreshListener {

	private SwipeRefreshLayout mSwipeRefreshLayout;
	private ListView mList;

	@SuppressLint("InlinedApi")
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		mList = (ListView) findViewById(R.id.list);
		mSwipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.layout_containter);
		mSwipeRefreshLayout.setColorSchemeResources(android.R.color.holo_blue_light,
				android.R.color.holo_green_light,
				android.R.color.holo_orange_light,
				android.R.color.holo_red_light);
		mSwipeRefreshLayout.setOnRefreshListener(this);
		
	}

	@Override
	public void onRefresh() {
		new Handler().postDelayed(new Runnable() {
			
			@Override
			public void run() {
				mSwipeRefreshLayout.setRefreshing(false);
				mList.setAdapter(new MyAdapter());
			}
		}, 5000);
	}
	
	class MyAdapter extends BaseAdapter {

		@Override
		public int getCount() {
			return 10;
		}

		@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) {
			View inflate = null;
			TextView tvItem = null;
			if (convertView == null) {
				inflate = getLayoutInflater().inflate(R.layout.listview_item, null);
				tvItem = (TextView) inflate.findViewById(R.id.tv_item);
				inflate.setTag(tvItem);
			} else {
				inflate = convertView;
				tvItem = (TextView) inflate.getTag();
			}
			tvItem.setText("下拉刷新item"+position);
			return inflate;
		}
		
	}


}

 

下拉刷新SwipeRefreshLayout源碼

 

×××地址:http://download.csdn.net/detail/dennisruan/9433027

 


網(wǎng)站標(biāo)題:下拉刷新SwipeRefreshLayout源碼
標(biāo)題來源:http://weahome.cn/article/psegce.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部