Android Open Source - AerisAndroidLibrary Day Night View






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.view;
// w  w  w  .  j  a  va  2s. c  om
import java.util.Locale;

import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;

import com.example.demoaerisproject.R;
import com.hamweather.aeris.model.ForecastPeriod;
import com.hamweather.aeris.util.FileUtil;

public class DayNightView extends RelativeLayout {

  private TextView intervalTextView;
  private TextView tempTextView;
  private TextView precipLabel;
  private TextView precipTextView;
  private ImageView iconImageView;
  private TextView windsTextView;
  private TextView weatherShortTextView;

  public DayNightView(Context context, AttributeSet attrs) {
    super(context, attrs);
    LayoutInflater inflater = (LayoutInflater) context
        .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    inflater.inflate(R.layout.view_forecast_today_tnt, this, true);
    intervalTextView = (TextView) this.findViewById(R.id.tvForeInterval);
    tempTextView = (TextView) this.findViewById(R.id.tvForeTemperature);
    precipLabel = (TextView) this.findViewById(R.id.tvForePrecip);
    precipTextView = (TextView) this.findViewById(R.id.tvForePrecipVal);
    iconImageView = (ImageView) this.findViewById(R.id.ivForeWeatherIcon);
    windsTextView = (TextView) this.findViewById(R.id.tvForeWindsVal);
    weatherShortTextView = (TextView) this
        .findViewById(R.id.tvForeWeatherShort);
  }

  public void setPeriod(ForecastPeriod period, String intervalName) {
    intervalTextView.setText(intervalName);
    
    int temp;
    if (period.isDay == true) {
      temp = period.maxTempF.intValue();
    }
    else {
      temp = period.minTempF.intValue();
    }
    
    tempTextView.setText(String.valueOf(temp));
    iconImageView.setImageResource(FileUtil.getDrawableByName(period.icon,
        getContext()));
    if (period.snowIN == null || period.snowIN.doubleValue() == 0) {
      precipLabel.setText("Precip");
      if (period.precipIN != null) {
        precipTextView.setText(period.precipIN + " IN");
      } else {
        precipTextView.setText("0.00 IN");
      }
    } else {
      precipLabel.setText("Snow");
      precipTextView.setText(period.snowIN + " IN");
    }

    if (period.windDir != null) {
      String tWind = "";
      if (period.windSpeedMaxMPH.intValue() < 5) {
        tWind = "Calm";
      }
      if (period.windSpeedMinMPH.intValue() == period.windSpeedMaxMPH
          .intValue()) {
        tWind = String.format(Locale.ENGLISH, "%s %d mph",
            period.windDir, period.windSpeedMaxMPH.intValue());
      } else {
        tWind = String.format(Locale.ENGLISH, "%s %d-%d mph",
            period.windDir, period.windSpeedMinMPH.intValue(),
            period.windSpeedMaxMPH.intValue());
      }

      windsTextView.setText(tWind);
    } else {
      windsTextView.setText("N/A");
    }

    weatherShortTextView.setText(period.weatherPrimary);

  }

}




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