Java tutorial
/* * WiFi Analyzer * Copyright (C) 2016 VREM Software Development <VREMSoftwareDevelopment@gmail.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> */ package com.aqnote.app.wifianalyzer.wifi; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentActivity; import android.support.v4.widget.SwipeRefreshLayout; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ListView; import android.widget.TextView; import com.aqnote.app.wifianalyzer.MainContext; import com.aqnote.app.wifianalyzer.R; import com.aqnote.app.wifianalyzer.wifi.scanner.Scanner; public class ChannelRatingFragment extends Fragment { private SwipeRefreshLayout swipeRefreshLayout; private ChannelRatingAdapter channelRatingAdapter; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { FragmentActivity activity = getActivity(); View view = inflater.inflate(R.layout.channel_rating_content, container, false); swipeRefreshLayout = (SwipeRefreshLayout) view.findViewById(R.id.channelRatingRefresh); swipeRefreshLayout.setOnRefreshListener(new ListViewOnRefreshListener()); TextView bestChannels = (TextView) view.findViewById(R.id.channelRatingBestChannels); ListView listView = (ListView) view.findViewById(R.id.channelRatingView); channelRatingAdapter = new ChannelRatingAdapter(activity, bestChannels); listView.setAdapter(channelRatingAdapter); Scanner scanner = MainContext.INSTANCE.getScanner(); scanner.register(channelRatingAdapter); return view; } private void refresh() { swipeRefreshLayout.setRefreshing(true); Scanner scanner = MainContext.INSTANCE.getScanner(); scanner.update(); swipeRefreshLayout.setRefreshing(false); } @Override public void onResume() { super.onResume(); refresh(); } @Override public void onDestroy() { Scanner scanner = MainContext.INSTANCE.getScanner(); scanner.unregister(channelRatingAdapter); super.onDestroy(); } private class ListViewOnRefreshListener implements SwipeRefreshLayout.OnRefreshListener { @Override public void onRefresh() { refresh(); } } }