中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

左云县| 繁峙县| 龙海市| 泽库县| 武山县| 若羌县| 岚皋县| 建始县| 麻阳| 荔浦县| 涡阳县| 绥芬河市| 砚山县| 崇仁县| 贡嘎县| 库伦旗| 通州市| 衡山县| 宣威市| 清原| 乾安县| 青阳县| 通城县| 玉山县| 东明县| 金山区| 泰兴市| 柳林县| 门头沟区| 抚顺市| 买车| 宣汉县| 邵武市| 鸡西市| 娄烦县| 兴文县| 读书| 大理市| 乐清市| 文山县| 北京市|