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

溫馨提示×

溫馨提示×

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

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

Google官方版下拉刷新控件SwipeRefreshLayout解析

發布時間:2020-06-30 14:24:05 來源:網絡 閱讀:879 作者:liuyvhao 欄目:移動開發

效果圖如下:

Google官方版下拉刷新控件SwipeRefreshLayout解析

布局文件:

<?xml version="1.0" encoding="utf-8"?>  
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:tools="http://schemas.android.com/tools"  
    android:id="@+id/swipe"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    tools:context="com.lg.swiperefreshlayoutdemo.MainActivity">  
  
    <RelativeLayout  
        android:layout_width="match_parent"  
        android:layout_height="match_parent">  
  
        <ListView  
            android:id="@+id/listview"  
            android:layout_width="match_parent"  
            android:layout_height="match_parent" />  
  
    </RelativeLayout>  
  
</android.support.v4.widget.SwipeRefreshLayout>

MainActivity中代碼:

public class MainActivity extends AppCompatActivity implements SwipeRefreshLayout.OnRefreshListener {  
    private SwipeRefreshLayout swipeRefreshLayout;  
    private ListView listView;  
    private String[] names = new String[]{"郭靖", "黃蓉", "楊過", "小龍女"};  
  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.activity_main);  
        swipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.swipe);  
        swipeRefreshLayout.setOnRefreshListener(this);  
  
        listView = (ListView) findViewById(R.id.listview);  
    }  
  
    @Override  
    public void onRefresh() {  
        listView.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, names));  
        swipeRefreshLayout.setRefreshing(false);  
        Toast.makeText(this, "刷新成功", Toast.LENGTH_SHORT).show();  
    }  
}

很簡單,可以根據具體的需求而更改

源碼地址:http://down.51cto.com/data/2221977

向AI問一下細節

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

AI

巴塘县| 望江县| 太原市| 云阳县| 个旧市| 铅山县| 内丘县| 连州市| 中阳县| 南城县| 原平市| 西平县| 九寨沟县| 兴和县| 泰州市| 博罗县| 灵石县| 鹰潭市| 庆云县| 陆丰市| 简阳市| 北海市| 岑溪市| 兖州市| 彭山县| 色达县| 福清市| 泽州县| 嘉义县| 成都市| 池州市| 景宁| 饶平县| 闻喜县| 梁河县| 新龙县| 铁岭市| 莱芜市| 忻州市| 原阳县| 龙陵县|