亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

下拉刷新SwipeRefreshLayout源碼

發布時間:2020-07-09 02:40:30 來源:網絡 閱讀:406 作者:DennisRuan 欄目:移動開發

 

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

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

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

 

<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/layout_containter"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >
    
    <ListView 
        android:id="@+id/list"
        android:layout_width="match_parent"
    	android:layout_height="match_parent"></ListView>

</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

 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鄂尔多斯市| 平果县| 长寿区| 乌什县| 娱乐| 城固县| 河东区| 司法| 石台县| 高邮市| 乌兰县| 镇坪县| 达拉特旗| 东港市| 黔西县| 阿尔山市| 蓬溪县| 成安县| 贡觉县| 白城市| 宾川县| 灵武市| 秦安县| 略阳县| 贵定县| 璧山县| 临沭县| 宿州市| 河北省| 唐山市| 射洪县| 保康县| 龙州县| 莒南县| 古交市| 云龙县| 郑州市| 瓮安县| 牙克石市| 隆子县| 柳林县|