Android Open Source - AerisAndroidLibrary Custom Sunmoon Fragment






From Project

Back to project page AerisAndroidLibrary.

License

The source code is released under:

Apache License

If you think the Android project AerisAndroidLibrary listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.example.customendpoint;
/*from   w  w w  .  j  a v  a 2  s  . co m*/
import java.util.List;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ListView;

import com.example.db.MyPlace;
import com.example.db.MyPlacesDb;
import com.example.demoaerisproject.R;
import com.example.fragment.RefreshInterface;
import com.hamweather.aeris.communication.AerisCustomCommunicationTask;
import com.hamweather.aeris.communication.AerisProgressListener;
import com.hamweather.aeris.communication.AerisRequest;
import com.hamweather.aeris.communication.CustomCallback;
import com.hamweather.aeris.communication.Endpoint;
import com.hamweather.aeris.communication.parameter.ParameterBuilder;

public class CustomSunmoonFragment extends Fragment implements
    RefreshInterface, CustomCallback, AerisProgressListener {

  private static final int NUMBER_OF_DAYS = 7;
  private ListView sunmoonListView;
  private CustomEndpointAdapter adapter;
  private AerisCustomCommunicationTask task;

  @Override
  public View onCreateView(LayoutInflater inflater, ViewGroup container,
      Bundle savedInstanceState) {
    View rootView = inflater.inflate(R.layout.fragment_sunmoon, container,
        false);
    sunmoonListView = (ListView) rootView.findViewById(R.id.lvSunmoon);
    return rootView;
  }

  @Override
  public void onResume() {
    super.onResume();
    performRequest();
  }

  private void performRequest() {
    if (task == null) {
      MyPlacesDb db = new MyPlacesDb(getActivity());
      MyPlace place = db.getMyPlace();
      String id = ":auto";
      if (place != null) {
        id = place.getTextDisplay("");
      }
      ParameterBuilder builder = new ParameterBuilder()
          .withLimit(NUMBER_OF_DAYS).withFrom("now")
          .withTo("+" + NUMBER_OF_DAYS + "days");
      AerisRequest request = new AerisRequest(new Endpoint("sunmoon"),
          id, builder.build());
      request.withDebugOutput(true);
      task = new AerisCustomCommunicationTask(getActivity(), this,
          request);
      task.withProgress(this);
      task.execute();
    }
  }

  @Override
  public void refreshPressed() {
    performRequest();
  }

  @Override
  public void onResult(String custom, String response) {
    task = null;
    if ("sunmoon".equals(custom)) {
      CustomSunmoonResponse customResponse = new CustomSunmoonResponse();
      customResponse.fromJSON(response);
      if (customResponse.isSuccessful()
          && customResponse.getError() == null) {
        List<CustomSunmoonModel> data = customResponse
            .getListOfResponse();
        if (data != null && data.size() > 0) {
          adapter = new CustomEndpointAdapter(data, getActivity());
          sunmoonListView.setAdapter(adapter);
        }
      }

    }
  }

  @Override
  public void showProgress() {
    if (getActivity() != null) {
      this.getActivity().setProgressBarIndeterminateVisibility(true);
      this.getActivity().setProgressBarIndeterminate(true);
    }
  }

  @Override
  public void hideProgress() {
    if (getActivity() != null)
      this.getActivity().setProgressBarIndeterminateVisibility(false);
  }
}




Java Source Code List

aeris.AerisUnusedStub.java
com.example.customendpoint.CustomEndpointAdapter.java
com.example.customendpoint.CustomMoonModel.java
com.example.customendpoint.CustomSunModel.java
com.example.customendpoint.CustomSunmoonFragment.java
com.example.customendpoint.CustomSunmoonHolder.java
com.example.customendpoint.CustomSunmoonModel.java
com.example.customendpoint.CustomSunmoonResponse.java
com.example.db.MyLocLoader.java
com.example.db.MyPlace.java
com.example.db.MyPlacesDb.java
com.example.db.MyPlacesSubject.java
com.example.db.SimpleCursorLoader.java
com.example.demoaerisproject.AerisDialog.java
com.example.demoaerisproject.AerisNotification.java
com.example.demoaerisproject.BaseApplication.java
com.example.demoaerisproject.DrawerActivity.java
com.example.demoaerisproject.LocationSearchActivity.java
com.example.demoaerisproject.MyLocsActivity.java
com.example.demoaerisproject.SettingsActivity.java
com.example.edithelp.EditTextEnterListener.java
com.example.edithelp.EnterPressedDelegate.java
com.example.fragment.AerisFragment.java
com.example.fragment.AerisPrefFragment.java
com.example.fragment.ExtForecastFragment.java
com.example.fragment.HeadlessFragment.java
com.example.fragment.MapFragment.java
com.example.fragment.NearbyObsFragment.java
com.example.fragment.ObservationFragment.java
com.example.fragment.OverviewFragment.java
com.example.fragment.RecentObsFragment.java
com.example.fragment.RefreshInterface.java
com.example.fragment.SplashFragment.java
com.example.fragment.WeekendFragment.java
com.example.listview.AdapterHolder.java
com.example.listview.DayNightPeriod.java
com.example.listview.ForecastAdapter.java
com.example.listview.ForecastItemHolder.java
com.example.listview.IndexMonitorAdapter.java
com.example.listview.ListAdapter.java
com.example.listview.ObservationAdapter.java
com.example.listview.ObservationItemHolder.java
com.example.listview.ObservationPeriodAdapter.java
com.example.listview.PlacesAdapter.java
com.example.listview.PlacesItemHolder.java
com.example.listview.RecentObsHolder.java
com.example.listview.WeekendAdapter.java
com.example.listview.WeekendItemHolder.java
com.example.menudrawer.HomeFragment.java
com.example.menudrawer.NavDrawerItem.java
com.example.menudrawer.NavDrawerListAdapter.java
com.example.preference.PrefManager.java
com.example.service.NotificationService.java
com.example.service.ScreenOnReceiver.java
com.example.service.ScreenOnService.java
com.example.util.FormatUtil.java
com.example.view.DayNightView.java
com.example.view.SmallForecastView.java
com.example.view.TemperatureInfoData.java
com.example.view.TemperatureWindowAdapter.java
com.example.view.TwoPartView.java